Skip to content

Commit

Permalink
Merge pull request #110 from alphagov/php-bump
Browse files Browse the repository at this point in the history
Bump php requirement in composer.json and make version 4.0.1
  • Loading branch information
idavidmcdonald authored Apr 7, 2022
2 parents d99981b + 101815f commit 853aacf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [4.0.1] - 2022-04-07
### Added

* Added explicit requirement for PHP versions < 7.1 to composer.json

See https://github.com/alphagov/notifications-php-client/pull/107 for further context

## [4.0.0] - 2022-04-06
### Removed

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=5.4",
"php": ">=7.1",
"firebase/php-jwt": "^v6.1.0",
"guzzlehttp/psr7" : "^1.2"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Client {
* @const string Current version of this client.
* This follows Semantic Versioning (http://semver.org/)
*/
const VERSION = '4.0.0';
const VERSION = '4.0.1';

/**
* @const string The API endpoint for Notify production.
Expand Down

0 comments on commit 853aacf

Please sign in to comment.