Skip to content

Prep for 1.3.0 #352

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Installation
```json
{
"require": {
"parse/php-sdk" : "1.2.*"
"parse/php-sdk" : "1.3.*"
}
}
```
Expand Down Expand Up @@ -152,6 +152,12 @@ $object->save();

// Or pass true to use the master key to override ACLs when saving:
$object->save(true);

// encode an object for later use
$encoded = $object->encode();

// decode an object
$decodedObject = ParseObject::decode($encoded);
```

Users:
Expand Down
4 changes: 2 additions & 2 deletions src/Parse/ParseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ final class ParseClient
private static $caFile;

/**
* Constant for version string to include with requests. Currently 1.2.10.
* Constant for version string to include with requests. Currently 1.3.0.
*
* @var string
*/
const VERSION_STRING = 'php1.2.10';
const VERSION_STRING = 'php1.3.0';

/**
* Parse\Client::initialize, must be called before using Parse features.
Expand Down
2 changes: 1 addition & 1 deletion tests/Parse/ParseInstallationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function testInstallation()
$appVersion = '1.0.0';
$appName = 'Foo Bar App';
$appIdentifier = 'foo-bar-app-id';
$parseVersion = '1.2.3';
$parseVersion = '1.3.0';

$installation = new ParseInstallation();
$installation->set('installationId', $installationId);
Expand Down