Skip to content

Commit

Permalink
Prepare v0.45.0 (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpedrie authored Nov 16, 2017
1 parent 4c7f963 commit 68eeb82
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 16 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@
},
"replace": {
"google/cloud-bigquery": "0.3.1",
"google/cloud-core": "1.12.1",
"google/cloud-datastore": "1.0.3",
"google/cloud-core": "1.13.0",
"google/cloud-datastore": "1.1.0",
"google/cloud-error-reporting": "0.6.1",
"google/cloud-firestore": "dev-master",
"google/cloud-firestore": "0.1.0",
"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.8.2",
"google/cloud-spanner": "0.9.0",
"google/cloud-speech": "0.8.1",
"google/cloud-storage": "1.2.1",
"google/cloud-trace": "0.3.3",
Expand Down Expand Up @@ -121,4 +121,4 @@
]
}
}
}
}
5 changes: 5 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.45.0",
"v0.44.0",
"v0.43.1",
"v0.43.0",
Expand Down Expand Up @@ -91,6 +92,7 @@
"name": "google/cloud-core",
"defaultService": "core/servicebuilder",
"versions": [
"v1.13.0",
"v1.12.1",
"v1.12.0",
"v1.11.0",
Expand Down Expand Up @@ -119,6 +121,7 @@
"name": "google/cloud-datastore",
"defaultService": "datastore/datastoreclient",
"versions": [
"v1.1.0",
"v1.0.3",
"v1.0.2",
"v1.0.1",
Expand Down Expand Up @@ -165,6 +168,7 @@
"name": "google/cloud-firestore",
"defaultService": "firestore/firestoreclient",
"versions": [
"v0.1.0",
"master"
]
},
Expand Down Expand Up @@ -254,6 +258,7 @@
"name": "google/cloud-spanner",
"defaultService": "spanner/spannerclient",
"versions": [
"v0.9.0",
"v0.8.2",
"v0.8.1",
"v0.8.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.1
1.13.0
2 changes: 1 addition & 1 deletion src/Datastore/DatastoreClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class DatastoreClient
use ClientTrait;
use DatastoreTrait;

const VERSION = '1.0.3';
const VERSION = '1.1.0';

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.0.3
1.1.0
2 changes: 1 addition & 1 deletion src/Firestore/FirestoreClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class FirestoreClient
use SnapshotTrait;
use ValidateTrait;

const VERSION = 'master';
const VERSION = '0.1.0';

const DEFAULT_DATABASE = '(default)';

Expand Down
17 changes: 14 additions & 3 deletions src/Firestore/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Cloud Firestore
# Cloud Firestore for PHP

Cloud Firestore is a flexible, scalable, realtime database for mobile, web, and server development.
> Idiomatic PHP client for [Cloud Firestore](https://cloud.google.com/firestore/).
For more information, see [cloud.google.com](https://cloud.google.com/firestore/).
* [Homepage](http://googlecloudplatform.github.io/google-cloud-php)
* [API documentation](http://googlecloudplatform.github.io/google-cloud-php/#/docs/cloud-firestore/latest/firestore/firestoreclient)

**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-firestore
```
1 change: 1 addition & 0 deletions src/Firestore/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.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.44.0';
const VERSION = '0.45.0';
}
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.8.2';
const VERSION = '0.9.0';

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.8.2
0.9.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.44.0';
const VERSION = '0.45.0';
}

0 comments on commit 68eeb82

Please sign in to comment.