From 3f9def8696d50201d1f79a1d68a63f908cf113b3 Mon Sep 17 00:00:00 2001 From: David Supplee Date: Fri, 17 Nov 2017 13:39:32 -0500 Subject: [PATCH] Prepare v0.45.1 (#751) * Prepare v0.45.1 * add note to throws annotation --- composer.json | 6 +++--- docs/manifest.json | 4 ++++ src/Core/VERSION | 2 +- src/Firestore/FirestoreClient.php | 4 ++-- src/Firestore/VERSION | 2 +- src/ServiceBuilder.php | 2 +- src/Spanner/SpannerClient.php | 4 ++-- src/Spanner/VERSION | 2 +- src/Version.php | 2 +- 9 files changed, 16 insertions(+), 12 deletions(-) diff --git a/composer.json b/composer.json index bcd7aa33d921..48ce98baaa58 100644 --- a/composer.json +++ b/composer.json @@ -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", diff --git a/docs/manifest.json b/docs/manifest.json index 01cc0aad7436..25a414fefd07 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -11,6 +11,7 @@ "name": "google/cloud", "defaultService": "readme", "versions": [ + "v0.45.1", "v0.45.0", "v0.44.0", "v0.43.1", @@ -92,6 +93,7 @@ "name": "google/cloud-core", "defaultService": "core/servicebuilder", "versions": [ + "v1.13.1", "v1.13.0", "v1.12.1", "v1.12.0", @@ -168,6 +170,7 @@ "name": "google/cloud-firestore", "defaultService": "firestore/firestoreclient", "versions": [ + "v0.1.1", "v0.1.0", "master" ] @@ -258,6 +261,7 @@ "name": "google/cloud-spanner", "defaultService": "spanner/spannerclient", "versions": [ + "v0.9.1", "v0.9.0", "v0.8.2", "v0.8.1", diff --git a/src/Core/VERSION b/src/Core/VERSION index f88cf52e6efc..da38e07b326f 100644 --- a/src/Core/VERSION +++ b/src/Core/VERSION @@ -1 +1 @@ -1.13.0 \ No newline at end of file +1.13.1 \ No newline at end of file diff --git a/src/Firestore/FirestoreClient.php b/src/Firestore/FirestoreClient.php index 861bad0d40bb..97afa10ee4c3 100644 --- a/src/Firestore/FirestoreClient.php +++ b/src/Firestore/FirestoreClient.php @@ -45,7 +45,7 @@ class FirestoreClient use SnapshotTrait; use ValidateTrait; - const VERSION = '0.1.0'; + const VERSION = '0.1.1'; const DEFAULT_DATABASE = '(default)'; @@ -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 = []) { diff --git a/src/Firestore/VERSION b/src/Firestore/VERSION index 6c6aa7cb0918..6da28dde76d6 100644 --- a/src/Firestore/VERSION +++ b/src/Firestore/VERSION @@ -1 +1 @@ -0.1.0 \ No newline at end of file +0.1.1 \ No newline at end of file diff --git a/src/ServiceBuilder.php b/src/ServiceBuilder.php index 19dfdabcfe18..6b4471993d28 100644 --- a/src/ServiceBuilder.php +++ b/src/ServiceBuilder.php @@ -30,5 +30,5 @@ class ServiceBuilder extends CoreServiceBuilder /** * @deprecated */ - const VERSION = '0.45.0'; + const VERSION = '0.45.1'; } diff --git a/src/Spanner/SpannerClient.php b/src/Spanner/SpannerClient.php index 5ec92d2c5e8a..71a2c495b68a 100644 --- a/src/Spanner/SpannerClient.php +++ b/src/Spanner/SpannerClient.php @@ -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'; @@ -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 = []) { diff --git a/src/Spanner/VERSION b/src/Spanner/VERSION index 899f24fc754a..f514a2f0bd05 100644 --- a/src/Spanner/VERSION +++ b/src/Spanner/VERSION @@ -1 +1 @@ -0.9.0 \ No newline at end of file +0.9.1 \ No newline at end of file diff --git a/src/Version.php b/src/Version.php index a1ba2d272871..6a0f0e4b3c96 100644 --- a/src/Version.php +++ b/src/Version.php @@ -22,5 +22,5 @@ */ class Version { - const VERSION = '0.45.0'; + const VERSION = '0.45.1'; }