Skip to content

Commit

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

* fix replace keyword
  • Loading branch information
dwsupplee authored Jul 12, 2017
1 parent b3b48f8 commit 782751a
Show file tree
Hide file tree
Showing 15 changed files with 28 additions and 20 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@
"google/cloud-bigquery": "0.2.1",
"google/cloud-core": "1.6.0",
"google/cloud-datastore": "1.0.0",
"google/cloud-error-reporting": "0.4.0",
"google/cloud-error-reporting": "0.4.1",
"google/cloud-logging": "1.3.0",
"google/cloud-monitoring": "0.4.0",
"google/cloud-monitoring": "0.4.1",
"google/cloud-language": "0.4.0",
"google/cloud-pubsub": "0.6.0",
"google/cloud-spanner": "0.3.0",
"google/cloud-speech": "0.5.0",
"google/cloud-storage": "1.1.0",
"google/cloud-trace": "0.2.0",
"google/cloud-spanner": "0.3.1",
"google/cloud-speech": "0.6.0",
"google/cloud-storage": "1.1.2",
"google/cloud-trace": "0.3.0",
"google/cloud-translate": "1.0.0",
"google/cloud-videointelligence": "0.3.0",
"google/cloud-videointelligence": "0.3.1",
"google/cloud-vision": "0.4.0"
},
"suggest": {
Expand Down
2 changes: 1 addition & 1 deletion dev/src/Release/Command/Release.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ private function updateComposerReplacesVersion($version, array $component)

$data = json_decode(file_get_contents($composer), true);

$data['replaces'][$component['name']] = $version;
$data['replace'][$component['name']] = $version;

file_put_contents($composer, json_encode($data, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES));
}
Expand Down
8 changes: 8 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": "servicebuilder",
"versions": [
"v0.34.0",
"v0.33.1",
"v0.33.0",
"v0.32.1",
Expand Down Expand Up @@ -110,6 +111,7 @@
"name": "google/cloud-error-reporting",
"defaultService": "errorreporting/readme",
"versions": [
"v0.4.1",
"v0.4.0",
"v0.3.0",
"v0.2.1",
Expand All @@ -136,6 +138,7 @@
"name": "google/cloud-monitoring",
"defaultService": "monitoring/readme",
"versions": [
"v0.4.1",
"v0.4.0",
"v0.3.0",
"v0.2.1",
Expand Down Expand Up @@ -176,6 +179,7 @@
"name": "google/cloud-spanner",
"defaultService": "spanner/spannerclient",
"versions": [
"v0.3.1",
"v0.3.0",
"v0.2.2",
"v0.2.1",
Expand All @@ -190,6 +194,7 @@
"name": "google/cloud-speech",
"defaultService": "speech/speechclient",
"versions": [
"v0.6.0",
"v0.5.0",
"v0.4.0",
"v0.3.0",
Expand All @@ -203,6 +208,7 @@
"name": "google/cloud-storage",
"defaultService": "storage/storageclient",
"versions": [
"v1.1.2",
"v1.1.1",
"v1.1.0",
"v1.0.0",
Expand All @@ -215,6 +221,7 @@
"name": "google/cloud-trace",
"defaultService": "trace/traceclient",
"versions": [
"v0.3.0",
"v0.2.0",
"v0.1.0",
"master"
Expand All @@ -237,6 +244,7 @@
"name": "google/cloud-videointelligence",
"defaultService": "videointelligence/videointelligenceserviceclient",
"versions": [
"v0.3.1",
"v0.3.0",
"v0.2.0",
"v0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/ErrorReporting/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.4.1
2 changes: 1 addition & 1 deletion src/Monitoring/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.4.1
2 changes: 1 addition & 1 deletion src/ServiceBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*/
class ServiceBuilder
{
const VERSION = '0.33.1';
const VERSION = '0.34.0';

/**
* @var array Configuration options to be used between clients.
Expand Down
2 changes: 1 addition & 1 deletion src/Spanner/SpannerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class SpannerClient
use LROTrait;
use ValidateTrait;

const VERSION = '0.3.0';
const VERSION = '0.3.1';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/spanner.data';
const ADMIN_SCOPE = 'https://www.googleapis.com/auth/spanner.admin';
Expand Down
2 changes: 1 addition & 1 deletion src/Spanner/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1
2 changes: 1 addition & 1 deletion src/Speech/SpeechClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class SpeechClient
{
use ClientTrait;

const VERSION = '0.5.0';
const VERSION = '0.6.0';

const SCOPE = 'https://www.googleapis.com/auth/cloud-platform';

Expand Down
2 changes: 1 addition & 1 deletion src/Speech/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.6.0
2 changes: 1 addition & 1 deletion src/Storage/StorageClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class StorageClient
use ArrayTrait;
use ClientTrait;

const VERSION = '1.1.1';
const VERSION = '1.1.2';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/devstorage.full_control';
const READ_ONLY_SCOPE = 'https://www.googleapis.com/auth/devstorage.read_only';
Expand Down
2 changes: 1 addition & 1 deletion src/Storage/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.1.2
2 changes: 1 addition & 1 deletion src/Trace/TraceClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class TraceClient
use ArrayTrait;
use ClientTrait;

const VERSION = '0.2.0';
const VERSION = '0.3.0';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/cloud-platform';
const READ_ONLY_SCOPE = 'https://www.googleapis.com/auth/trace.readonly';
Expand Down
2 changes: 1 addition & 1 deletion src/Trace/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.3.0
2 changes: 1 addition & 1 deletion src/VideoIntelligence/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1

0 comments on commit 782751a

Please sign in to comment.