Skip to content

Commit

Permalink
update fallback & release v0.2.3 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz committed Jul 9, 2019
1 parent bc03a6e commit 54fb9be
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

### v0.2.3 / 2019-07-09
- Update `grpc-fallback-go` version to `v0.1.2`

### v0.2.2 / 2019-07-09
- Update `grpc-fallback-go` version to `v0.1.1`

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
$ docker pull gcr.io/gapic-images/gapic-showcase:0.2.3
$ docker run \
--rm \
-p 7469:7469/tcp \
-p 7469:7469/udp \
gcr.io/gapic-images/gapic-showcase:0.2.2 \
gcr.io/gapic-images/gapic-showcase:0.2.3 \
--help
> Root command of gapic-showcase
>
Expand All @@ -52,7 +52,7 @@ $ docker run \

### Binary
```sh
$ export GAPIC_SHOWCASE_VERSION=0.2.2
$ export GAPIC_SHOWCASE_VERSION=0.2.3
$ 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/
Expand Down
2 changes: 1 addition & 1 deletion cmd/gapic-showcase/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"
rootCmd.Version = "0.2.3"
rootCmd.SetVersionTemplate(
`{{printf "%s" .Version}}`)
}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require (
cloud.google.com/go v0.37.1
github.com/golang/protobuf v1.3.1
github.com/googleapis/gax-go/v2 v2.0.4
github.com/googleapis/grpc-fallback-go v0.1.1
github.com/googleapis/grpc-fallback-go v0.1.2
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/spf13/cobra v0.0.3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ github.com/googleapis/gax-go v2.0.0+incompatible h1:j0GKcs05QVmm7yesiZq2+9cxHkNK
github.com/googleapis/gax-go v2.0.0+incompatible/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY=
github.com/googleapis/gax-go/v2 v2.0.4 h1:hU4mGcQI4DaAYW+IbTun+2qEZVFxK0ySjQLTbS0VQKc=
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/grpc-fallback-go v0.1.1 h1:N7ZiJGm693SvUkcZVf6zTxrsBDmQXB5qzBSypqbgrF4=
github.com/googleapis/grpc-fallback-go v0.1.1/go.mod h1:RYkuHZgaQSKo6qjcFM/JJ4CB4fsDM2JEtd6QhA9UGaE=
github.com/googleapis/grpc-fallback-go v0.1.2 h1:1WzjL08DQLPtK0jULr4X9V1CrmN95MH9se+ebx73oL4=
github.com/googleapis/grpc-fallback-go v0.1.2/go.mod h1:RYkuHZgaQSKo6qjcFM/JJ4CB4fsDM2JEtd6QhA9UGaE=
github.com/gorilla/mux v1.7.2 h1:zoNxOV7WjqXptQOVngLmcSQgXmgk4NMz1HibBchjl/I=
github.com/gorilla/mux v1.7.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA=
Expand Down
4 changes: 2 additions & 2 deletions nodejs-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2 \
$ docker run --rm --network host gcr.io/gapic-images/gapic-showcase:0.2.3 \
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.2 \
$ docker run --rm --network host gcr.io/gapic-images/gapic-showcase:0.2.3 \
echo --address host.docker.internal:7469 wait --end ttl --end.ttl.seconds 5 \
--follow --response success --response.success.content okay
```
2 changes: 1 addition & 1 deletion util/cmd/bump_version/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
)

const currentAPIVersion = "v1beta1"
const currentReleaseVersion = "0.2.2"
const currentReleaseVersion = "0.2.3"

// 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
Expand Down

0 comments on commit 54fb9be

Please sign in to comment.