Skip to content

Commit

Permalink
v0.3.0 (#179)
Browse files Browse the repository at this point in the history
* release v0.3.0
  • Loading branch information
noahdietz authored Aug 9, 2019
1 parent 14ec0fa commit 4e9247b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release History

### v0.3.0 / 2019-08-09
- Remove nodejs server implementation
- Update dependencies
- Update golang docker tag to v1.12
- Add Block method to Echo service
- Enable kotlin smoke test
- Add renovate.json

### v0.2.4 / 2019-07-11
- Update `grpc-fallback-go` version to `v0.1.3`

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.4
$ docker pull gcr.io/gapic-images/gapic-showcase:0.3.0
$ docker run \
--rm \
-p 7469:7469/tcp \
-p 7469:7469/udp \
gcr.io/gapic-images/gapic-showcase:0.2.4 \
gcr.io/gapic-images/gapic-showcase:0.3.0 \
--help
> Root command of gapic-showcase
>
Expand All @@ -52,7 +52,7 @@ $ docker run \

### Binary
```sh
$ export GAPIC_SHOWCASE_VERSION=0.2.4
$ export GAPIC_SHOWCASE_VERSION=0.3.0
$ 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.4"
rootCmd.Version = "0.3.0"
rootCmd.SetVersionTemplate(
`{{printf "%s" .Version}}`)
}
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.4"
const currentReleaseVersion = "0.3.0"

// 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 4e9247b

Please sign in to comment.