Skip to content

Commit

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

* Add GAPIC to Spanner docs table of contents
  • Loading branch information
jdpedrie authored May 18, 2017
1 parent d15968c commit 71680dd
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 6 deletions.
24 changes: 21 additions & 3 deletions docs/contents/cloud-spanner.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"services": [{
"title": "SpannerClient",
"type": "spanner/spannerclient"
}, {
"title": "Configuration",
"type": "spanner/configuration"
}, {
"title": "Database",
"type": "spanner/database"
}, {
"title": "Instance",
"type": "spanner/instance"
}, {
"title": "InstanceConfiguration",
"type": "spanner/instanceconfiguration"
}, {
"title": "Snapshot",
"type": "spanner/snapshot"
Expand Down Expand Up @@ -43,5 +43,23 @@
},{
"title": "CacheSessionPool",
"type": "spanner/session/cachesessionpool"
}, {
"title": "v1",
"type": "spanner/v1/readme",
"patterns": [
"spanner/v1/\\w{1,}",
"spanner/admin/database/v1/\\w{1,}",
"spanner/admin/instance/v1/\\w{1,}"
],
"nav": [{
"title": "SpannerClient",
"type": "spanner/v1/spannerclient"
}, {
"title": "DatabaseAdminClient",
"type": "spanner/admin/database/v1/databaseadminclient"
}, {
"title": "InstanceAdminClient",
"type": "spanner/admin/instance/v1/instanceadminclient"
}]
}]
}
1 change: 1 addition & 0 deletions docs/contents/google-cloud.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"cloud-monitoring",
"cloud-language",
"cloud-pubsub",
"cloud-spanner",
"cloud-speech",
"cloud-storage",
"cloud-translate",
Expand Down
3 changes: 3 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.30.0",
"v0.29.0",
"v0.28.0",
"v0.27.0",
Expand Down Expand Up @@ -63,6 +64,7 @@
"name": "google/cloud-core",
"defaultService": "core/readme",
"versions": [
"v1.4.0",
"v1.3.0",
"v1.2.0",
"v1.1.1",
Expand Down Expand Up @@ -144,6 +146,7 @@
"name": "google/cloud-spanner",
"defaultService": "spanner/spannerclient",
"versions": [
"v0.1.0",
"master"
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/Core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.4.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.29.0';
const VERSION = '0.30.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 = 'master';
const VERSION = '0.1.0';

const FULL_CONTROL_SCOPE = 'https://www.googleapis.com/auth/spanner.data';
const ADMIN_SCOPE = 'https://www.googleapis.com/auth/spanner.admin';
Expand Down
16 changes: 16 additions & 0 deletions src/Spanner/V1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Google Cloud PHP Spanner

> Idiomatic PHP client for [Cloud Spanner](https://cloud.google.com/spanner/).
* [Homepage](http://googlecloudplatform.github.io/google-cloud-php)
* [API documentation](http://googlecloudplatform.github.io/google-cloud-php/#/docs/cloud-spanner/latest/spanner/spannerclient)

**NOTE:** This repository is part of [Google Cloud PHP](https://github.com/googlecloudplatform/google-cloud-php). Any
support requests, bug reports, or development contributions should be directed to
that project.

## Installation

```
$ composer require google/cloud-spanner
```
1 change: 1 addition & 0 deletions src/Spanner/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0

0 comments on commit 71680dd

Please sign in to comment.