Skip to content

Commit 0b5ea12

Browse files
committed
update version number
1 parent dcef3ef commit 0b5ea12

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
55

66
### 1.5.0
77
[See the diff between 1.4.0 and 1.5.0](https://github.com/parse-community/parse-php-sdk/compare/1.4.0...1.5.0)
8+
89
- Avoid session fixation by regenerating session id on user promotion (#414)
10+
- Enable login with POST (#430)
911
- Properly handle null query response (#425)
1012
- Fix queries equalTo with null values (#406)
1113
- Add sort option to GeoQueries (#424)
1214
- Add encode option to ParseQuery:find (#423)
1315
- Add batchSize to saveAll / destroyAll (#422)
14-
- add And / Nor query (#419)
16+
- Add includeAll to query (#421)
17+
- Add And / Nor query (#419)
1518
- Add 'containedBy' query (#418)
1619
- Add 'containsAllStartingWith' query (#417)
1720
- Remove anonymous auth data from User table when user registers. Match other SDK behavior (#417)

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ from your PHP app or script. Designed to work with the self-hosted Parse Server
99
For more information on Parse and its features, see [the website](http://parseplatform.org), [the PHP guide](https://docs.parseplatform.org/php/guide/) or [API Reference](http://parseplatform.org/parse-php-sdk/namespaces/Parse.html).
1010

1111
Please note that this documentation contains the latest changes that may as of yet be unreleased. To see the README for your release please use the list below.
12+
- [1.5.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.5.0/README.md)
1213
- [1.4.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.4.0/README.md)
1314
- [1.3.0 README](https://github.com/parse-community/parse-php-sdk/blob/1.3.0/README.md)
1415

@@ -65,7 +66,7 @@ Note that the Parse PHP SDK requires PHP 5.4 or newer. It can also run on HHVM (
6566
```json
6667
{
6768
"require": {
68-
"parse/php-sdk" : "1.4.*"
69+
"parse/php-sdk" : "1.5.*"
6970
}
7071
}
7172
```

src/Parse/ParseClient.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ final class ParseClient
111111
private static $caFile;
112112

113113
/**
114-
* Constant for version string to include with requests. Currently 1.4.0.
114+
* Constant for version string to include with requests. Currently 1.5.0.
115115
*
116116
* @var string
117117
*/
118-
const VERSION_STRING = 'php1.4.0';
118+
const VERSION_STRING = 'php1.5.0';
119119

120120
/**
121121
* Parse\Client::initialize, must be called before using Parse features.

0 commit comments

Comments
 (0)