Skip to content

Commit

Permalink
Prepare v0.45.1 (#751)
Browse files Browse the repository at this point in the history
* Prepare v0.45.1

* add note to throws annotation
  • Loading branch information
dwsupplee authored Nov 17, 2017
1 parent f4bd25c commit 3f9def8
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@
},
"replace": {
"google/cloud-bigquery": "0.3.1",
"google/cloud-core": "1.13.0",
"google/cloud-core": "1.13.1",
"google/cloud-datastore": "1.1.0",
"google/cloud-error-reporting": "0.6.1",
"google/cloud-firestore": "0.1.0",
"google/cloud-firestore": "0.1.1",
"google/cloud-logging": "1.6.2",
"google/cloud-monitoring": "0.6.1",
"google/cloud-language": "0.9.1",
"google/cloud-pubsub": "0.9.2",
"google/cloud-spanner": "0.9.0",
"google/cloud-spanner": "0.9.1",
"google/cloud-speech": "0.8.1",
"google/cloud-storage": "1.2.1",
"google/cloud-trace": "0.3.3",
Expand Down
4 changes: 4 additions & 0 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"name": "google/cloud",
"defaultService": "readme",
"versions": [
"v0.45.1",
"v0.45.0",
"v0.44.0",
"v0.43.1",
Expand Down Expand Up @@ -92,6 +93,7 @@
"name": "google/cloud-core",
"defaultService": "core/servicebuilder",
"versions": [
"v1.13.1",
"v1.13.0",
"v1.12.1",
"v1.12.0",
Expand Down Expand Up @@ -168,6 +170,7 @@
"name": "google/cloud-firestore",
"defaultService": "firestore/firestoreclient",
"versions": [
"v0.1.1",
"v0.1.0",
"master"
]
Expand Down Expand Up @@ -258,6 +261,7 @@
"name": "google/cloud-spanner",
"defaultService": "spanner/spannerclient",
"versions": [
"v0.9.1",
"v0.9.0",
"v0.8.2",
"v0.8.1",
Expand Down
2 changes: 1 addition & 1 deletion src/Core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.0
1.13.1
4 changes: 2 additions & 2 deletions src/Firestore/FirestoreClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class FirestoreClient
use SnapshotTrait;
use ValidateTrait;

const VERSION = '0.1.0';
const VERSION = '0.1.1';

const DEFAULT_DATABASE = '(default)';

Expand Down Expand Up @@ -98,7 +98,7 @@ class FirestoreClient
* platform compatibility. **Defaults to** false.
* }
* @throws \InvalidArgumentException
* @throws GoogleException
* @throws GoogleException If the gRPC extension is not enabled.
*/
public function __construct(array $config = [])
{
Expand Down
2 changes: 1 addition & 1 deletion src/Firestore/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.1.1
2 changes: 1 addition & 1 deletion src/ServiceBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ class ServiceBuilder extends CoreServiceBuilder
/**
* @deprecated
*/
const VERSION = '0.45.0';
const VERSION = '0.45.1';
}
4 changes: 2 additions & 2 deletions src/Spanner/SpannerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class SpannerClient
use LROTrait;
use ValidateTrait;

const VERSION = '0.9.0';
const VERSION = '0.9.1';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/spanner.data';
const ADMIN_SCOPE = 'https://www.googleapis.com/auth/spanner.admin';
Expand Down Expand Up @@ -110,7 +110,7 @@ class SpannerClient
* returned as a {@see Google\Cloud\Core\Int64} object for 32 bit
* platform compatibility. **Defaults to** false.
* }
* @throws GoogleException
* @throws GoogleException If the gRPC extension is not enabled.
*/
public function __construct(array $config = [])
{
Expand Down
2 changes: 1 addition & 1 deletion src/Spanner/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
0.9.1
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
*/
class Version
{
const VERSION = '0.45.0';
const VERSION = '0.45.1';
}

0 comments on commit 3f9def8

Please sign in to comment.