Skip to content

Commit

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

* Bump monitoring, error reporting
  • Loading branch information
jdpedrie authored May 25, 2017
1 parent ae772db commit 8412656
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 7 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,14 @@ if ($operationResponse->operationSucceeded()) {
}
```

#### google/cloud-videointelligence

Cloud Video Intelligence can be installed separately by requiring the `google/cloud-videointelligence` composer package:

```
$ require google/cloud-videointelligence
```

## Google Stackdriver Trace (Alpha)

- [API Documentation](http://googlecloudplatform.github.io/google-cloud-php/#/docs/latest/trace/traceclient)
Expand Down Expand Up @@ -531,6 +539,14 @@ foreach($traceClient->traces() as $trace) {
}
```

#### google/cloud-trace

Stackdriver Trace can be installed separately by requiring the `google/cloud-trace` composer package:

```
$ require google/cloud-trace
```

## Caching Access Tokens

By default the library will use a simple in-memory caching implementation, however it is possible to override this behavior by passing a [PSR-6](http://www.php-fig.org/psr/psr-6/) caching implementation in to the desired client.
Expand Down
1 change: 1 addition & 0 deletions docs/contents/google-cloud.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"cloud-spanner",
"cloud-speech",
"cloud-storage",
"cloud-trace",
"cloud-translate",
"cloud-videointelligence",
"cloud-vision",
Expand Down
14 changes: 14 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.32.0",
"v0.31.1",
"v0.31.0",
"v0.30.1",
Expand Down Expand Up @@ -67,6 +68,7 @@
"name": "google/cloud-core",
"defaultService": "core/readme",
"versions": [
"v1.5.1",
"v1.5.0",
"v1.4.1",
"v1.4.0",
Expand Down Expand Up @@ -95,6 +97,7 @@
"name": "google/cloud-error-reporting",
"defaultService": "errorreporting/readme",
"versions": [
"v0.3.0",
"v0.2.1",
"v0.2.0",
"v0.1.0",
Expand All @@ -118,6 +121,7 @@
"name": "google/cloud-monitoring",
"defaultService": "monitoring/readme",
"versions": [
"v0.3.0",
"v0.2.1",
"v0.2.0",
"v0.1.0",
Expand Down Expand Up @@ -154,6 +158,7 @@
"name": "google/cloud-spanner",
"defaultService": "spanner/spannerclient",
"versions": [
"v0.2.1",
"v0.2.0",
"v0.1.1",
"v0.1.0",
Expand Down Expand Up @@ -182,6 +187,15 @@
"master"
]
},
{
"id": "cloud-trace",
"name": "google/cloud-trace",
"defaultService": "trace/traceclient",
"versions": [
"v0.1.0",
"master"
]
},
{
"id": "cloud-translate",
"name": "google/cloud-translate",
Expand Down
2 changes: 1 addition & 1 deletion src/Core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0
1.5.1
2 changes: 1 addition & 1 deletion src/ErrorReporting/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.3.0
2 changes: 1 addition & 1 deletion src/Monitoring/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.3.0
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.31.1';
const VERSION = '0.32.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 @@ -65,7 +65,7 @@ class SpannerClient
use LROTrait;
use ValidateTrait;

const VERSION = '0.2.0';
const VERSION = '0.2.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.2.0
0.2.1
2 changes: 1 addition & 1 deletion src/Trace/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.1.0

0 comments on commit 8412656

Please sign in to comment.