diff --git a/CHANGELOG.md b/CHANGELOG.md index be74547d..705090b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [2.3.0](https://github.com/parse-community/parse-php-sdk/compare/2.2.0...2.3.0) (2023-05-13) + + +### Features + +* Add query methods `fetchWithInclude` and `fetchAllWithInclude` ([#512](https://github.com/parse-community/parse-php-sdk/issues/512)) ([0570f15](https://github.com/parse-community/parse-php-sdk/commit/0570f157a5e4efb2310b7df44c25ff246077589a)) + # [2.2.0](https://github.com/parse-community/parse-php-sdk/compare/2.1.0...2.2.0) (2023-05-13) diff --git a/package-lock.json b/package-lock.json index b59a019e..99ef162b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "parse-php-sdk", - "version": "2.2.0", + "version": "2.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "parse-php-sdk", - "version": "2.2.0", + "version": "2.3.0", "license": "BSD-3-Clause", "devDependencies": { "@semantic-release/changelog": "6.0.3", diff --git a/package.json b/package.json index bd0a14e7..1ffc260e 100644 --- a/package.json +++ b/package.json @@ -32,5 +32,5 @@ "semantic-release": "21.0.1", "winston": "3.2.1" }, - "version": "2.2.0" + "version": "2.3.0" } diff --git a/src/Parse/ParseClient.php b/src/Parse/ParseClient.php index b9c7aa88..864c04e5 100755 --- a/src/Parse/ParseClient.php +++ b/src/Parse/ParseClient.php @@ -115,7 +115,7 @@ final class ParseClient * * @var string */ - const VERSION_STRING = '2.2.0'; + const VERSION_STRING = '2.3.0'; /** * Parse\Client::initialize, must be called before using Parse features.