diff --git a/CHANGELOG.md b/CHANGELOG.md index 59df1015..be74547d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [2.2.0](https://github.com/parse-community/parse-php-sdk/compare/2.1.0...2.2.0) (2023-05-13) + + +### Features + +* Allow http options to be passed into `ParseClient` ([#513](https://github.com/parse-community/parse-php-sdk/issues/513)) ([ee2a5fa](https://github.com/parse-community/parse-php-sdk/commit/ee2a5fa389d553e73e483130647fd93cf187d142)) + # [2.1.0](https://github.com/parse-community/parse-php-sdk/compare/2.0.0...2.1.0) (2023-04-29) diff --git a/package-lock.json b/package-lock.json index 8dc17a2b..b59a019e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "parse-php-sdk", - "version": "2.1.0", + "version": "2.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "parse-php-sdk", - "version": "2.1.0", + "version": "2.2.0", "license": "BSD-3-Clause", "devDependencies": { "@semantic-release/changelog": "6.0.3", diff --git a/package.json b/package.json index 59afee70..bd0a14e7 100644 --- a/package.json +++ b/package.json @@ -32,5 +32,5 @@ "semantic-release": "21.0.1", "winston": "3.2.1" }, - "version": "2.1.0" + "version": "2.2.0" } diff --git a/src/Parse/ParseClient.php b/src/Parse/ParseClient.php index 6c0c88ee..b9c7aa88 100755 --- a/src/Parse/ParseClient.php +++ b/src/Parse/ParseClient.php @@ -115,7 +115,7 @@ final class ParseClient * * @var string */ - const VERSION_STRING = '2.1.0'; + const VERSION_STRING = '2.2.0'; /** * Parse\Client::initialize, must be called before using Parse features.