Skip to content

Commit

Permalink
Prep for 1.3.0 (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Wilson Friedman authored Sep 8, 2017
1 parent 89f38f7 commit af0c6c0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
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

0 comments on commit af0c6c0

Please sign in to comment.