Skip to content

Commit

Permalink
Prepare v0.55.0 (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpedrie authored and dwsupplee committed Feb 24, 2018
1 parent f3aa1d4 commit 49ef0a1
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 11 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@
"google/cloud-container": "0.2.1",
"google/cloud-core": "1.17.0",
"google/cloud-dataproc": "0.2.1",
"google/cloud-datastore": "1.3.0",
"google/cloud-datastore": "1.3.1",
"google/cloud-dlp": "0.5.2",
"google/cloud-error-reporting": "0.8.2",
"google/cloud-firestore": "0.4.2",
"google/cloud-firestore": "0.5.0",
"google/cloud-language": "0.12.1",
"google/cloud-logging": "1.9.2",
"google/cloud-monitoring": "0.8.1",
"google/cloud-oslogin": "0.2.1",
"google/cloud-pubsub": "0.12.2",
"google/cloud-pubsub": "1.0.0",
"google/cloud-spanner": "1.1.2",
"google/cloud-speech": "0.11.1",
"google/cloud-storage": "1.3.4",
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.55.0",
"v0.54.0",
"v0.53.0",
"v0.52.1",
Expand Down Expand Up @@ -187,6 +188,7 @@
"name": "google/cloud-datastore",
"defaultService": "datastore/datastoreclient",
"versions": [
"v1.3.1",
"v1.3.0",
"v1.2.2",
"v1.2.1",
Expand Down Expand Up @@ -265,6 +267,7 @@
"name": "google/cloud-firestore",
"defaultService": "firestore/firestoreclient",
"versions": [
"v0.5.0",
"v0.4.2",
"v0.4.1",
"v0.4.0",
Expand Down Expand Up @@ -375,6 +378,7 @@
"name": "google/cloud-pubsub",
"defaultService": "pubsub/pubsubclient",
"versions": [
"v1.0.0",
"v0.12.2",
"v0.12.1",
"v0.12.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Datastore/DatastoreClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class DatastoreClient
use ClientTrait;
use DatastoreTrait;

const VERSION = '1.3.0';
const VERSION = '1.3.1';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/datastore';

Expand Down
2 changes: 1 addition & 1 deletion src/Datastore/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.3.1
2 changes: 1 addition & 1 deletion src/Firestore/FirestoreClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class FirestoreClient
use SnapshotTrait;
use ValidateTrait;

const VERSION = '0.4.2';
const VERSION = '0.5.0';

const DEFAULT_DATABASE = '(default)';

Expand Down
2 changes: 1 addition & 1 deletion src/Firestore/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.2
0.5.0
2 changes: 1 addition & 1 deletion src/PubSub/PubSubClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class PubSubClient
use IncomingMessageTrait;
use ResourceNameTrait;

const VERSION = '0.12.2';
const VERSION = '1.0.0';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/pubsub';

Expand Down
2 changes: 1 addition & 1 deletion src/PubSub/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2
1.0.0
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.54.0';
const VERSION = '0.55.0';
}
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.54.0';
const VERSION = '0.55.0';
}

0 comments on commit 49ef0a1

Please sign in to comment.