diff --git a/CHANGELOG.md b/CHANGELOG.md index aedb5a269..6a51ac5c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Release History +### v0.2.1 / 2019-07-03 +- Add fallback-proxy to `gapic-showcase run` via grpc-fallback-go +- Expose fallback-proxy port in Dockerfile +- Tidy `go.mod` + ### v0.2.0 / 2019-05-24 - Regenerate GAPIC & GCLI with small updates - Update resource annotations diff --git a/README.md b/README.md index 71e8e6b7d..a0ce113b7 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,12 @@ page, or simply by installing from source using go. ### Docker ```sh -$ docker pull gcr.io/gapic-images/gapic-showcase:0.2.0 +$ docker pull gcr.io/gapic-images/gapic-showcase:0.2.1 $ docker run \ --rm \ -p 7469:7469/tcp \ -p 7469:7469/udp \ - gcr.io/gapic-images/gapic-showcase:0.2.0 \ + gcr.io/gapic-images/gapic-showcase:0.2.1 \ --help > Root command of gapic-showcase > @@ -52,7 +52,7 @@ $ docker run \ ### Binary ```sh -$ export GAPIC_SHOWCASE_VERSION=0.2.0 +$ export GAPIC_SHOWCASE_VERSION=0.2.1 $ export OS=linux $ export ARCH=amd64 $ curl -L https://github.com/googleapis/gapic-showcase/releases/download/v${GAPIC_SHOWCASE_VERSION}/gapic-showcase-${GAPIC_SHOWCASE_VERSION}-${OS}-${ARCH} | sudo tar -zx -- --directory /usr/local/bin/ diff --git a/cmd/gapic-showcase/version.go b/cmd/gapic-showcase/version.go index 122bd9259..0aaaf3f06 100644 --- a/cmd/gapic-showcase/version.go +++ b/cmd/gapic-showcase/version.go @@ -18,7 +18,7 @@ func init() { // Make roots version option only emit the version. This is used in circleci. // The template looks weird on purpose. Leaving as a single line causes the // output to append an extra character. - rootCmd.Version = "0.2.0" + rootCmd.Version = "0.2.1" rootCmd.SetVersionTemplate( `{{printf "%s" .Version}}`) } diff --git a/nodejs-server/README.md b/nodejs-server/README.md index 2290a764c..24af4b072 100644 --- a/nodejs-server/README.md +++ b/nodejs-server/README.md @@ -20,10 +20,10 @@ $ node build/src/index.js --verbose # will start on port 7469 Play with client: ```sh -$ docker run --rm --network host gcr.io/gapic-images/gapic-showcase:0.2.0 \ +$ docker run --rm --network host gcr.io/gapic-images/gapic-showcase:0.2.1 \ echo --address host.docker.internal:7469 echo --response content --response.content okay -$ docker run --rm --network host gcr.io/gapic-images/gapic-showcase:0.2.0 \ +$ docker run --rm --network host gcr.io/gapic-images/gapic-showcase:0.2.1 \ echo --address host.docker.internal:7469 wait --end ttl --end.ttl.seconds 5 \ --follow --response success --response.success.content okay ``` diff --git a/util/cmd/bump_version/main.go b/util/cmd/bump_version/main.go index 0b3fa5c0e..622202c68 100644 --- a/util/cmd/bump_version/main.go +++ b/util/cmd/bump_version/main.go @@ -30,7 +30,7 @@ import ( ) const currentAPIVersion = "v1beta1" -const currentReleaseVersion = "0.2.0" +const currentReleaseVersion = "0.2.1" // This script updates the release version or API version of files in gapic-showcase. // This script is used on API and release version bumps. This script must be ran in