diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eee2dd3bd4a..de7830534d20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.184.0 + +
google/cloud-shell 0.2.0 + + + +### Features + +* [Shell] expose clientCertSource option ([#4889](https://github.com/googleapis/google-cloud-php/issues/4889)) ([7326883](https://github.com/googleapis/google-cloud-php/commit/7326883999de2faf92b434892d4286afb9f5356b)) + +
+ ## 0.183.0
google/cloud-ai-platform 0.4.0 diff --git a/Shell/VERSION b/Shell/VERSION index 845639eef26c..0ea3a944b399 100644 --- a/Shell/VERSION +++ b/Shell/VERSION @@ -1 +1 @@ -0.1.4 +0.2.0 diff --git a/composer.json b/composer.json index cc23ea63e81c..eded62052ff2 100644 --- a/composer.json +++ b/composer.json @@ -170,7 +170,7 @@ "google/cloud-service-directory": "0.7.2", "google/cloud-service-management": "0.3.2", "google/cloud-service-usage": "0.2.4", - "google/cloud-shell": "0.1.4", + "google/cloud-shell": "0.2.0", "google/cloud-spanner": "1.49.2", "google/cloud-speech": "1.6.1", "google/cloud-sql-admin": "0.2.3", diff --git a/docs/manifest.json b/docs/manifest.json index fd8b7c1152a1..729964aff670 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -11,6 +11,7 @@ "name": "google/cloud", "defaultService": "servicebuilder", "versions": [ + "v0.184.0", "v0.183.0", "v0.182.0", "v0.181.0", @@ -3135,6 +3136,7 @@ "name": "google/cloud-shell", "defaultService": "shell/readme", "versions": [ + "v0.2.0", "v0.1.4", "v0.1.3", "v0.1.2", diff --git a/src/ServiceBuilder.php b/src/ServiceBuilder.php index efca5a42bd52..3b999188ce3c 100644 --- a/src/ServiceBuilder.php +++ b/src/ServiceBuilder.php @@ -30,5 +30,5 @@ class ServiceBuilder extends CoreServiceBuilder /** * @deprecated */ - const VERSION = '0.183.0'; + const VERSION = '0.184.0'; } diff --git a/src/Version.php b/src/Version.php index 4fe6f748e629..57969f823397 100644 --- a/src/Version.php +++ b/src/Version.php @@ -22,5 +22,5 @@ */ class Version { - const VERSION = '0.183.0'; + const VERSION = '0.184.0'; }