Skip to content

Commit

Permalink
v0.0.16 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-fenster authored and landrito committed Mar 25, 2019
1 parent c7e8308 commit e6ee01a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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.0.16 / 2019-03-25
- Fixing some field names in path templates

### v0.0.15 / 2019-03-25
- Fixing path templates to make sure curly braces match
- Use Go modules
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ or simply by using go commands.

#### Binary Installation
```sh
$ export GAPIC_SHOWCASE_VERSION=0.0.15
$ export GAPIC_SHOWCASE_VERSION=0.0.16
$ 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 All @@ -39,7 +39,7 @@ $ gapic-showcase run

#### Docker Installation
```sh
$ export GAPIC_SHOWCASE_VERSION=0.0.15
$ export GAPIC_SHOWCASE_VERSION=0.0.16
$ docker pull gcr.io/gapic-images/gapic-showcase:${GAPIC_SHOWCASE_VERSION}
$ docker run --rm -p 7469:7469/tcp -p 7469:7469/udp \
gcr.io/gapic-images/gapic-showcase:${GAPIC_SHOWCASE_VERSION}
Expand Down Expand Up @@ -69,7 +69,7 @@ protobuf files into their gapic-generator. This client will be the client used
for integration testing their gapic- generator.

```sh
$ export GAPIC_SHOWCASE_VERSION=0.0.15
$ export GAPIC_SHOWCASE_VERSION=0.0.16
$ curl -L https://github.com/googleapis/gapic-showcase/releases/download/v${GAPIC_SHOWCASE_VERSION}/gapic-showcase-${GAPIC_SHOWCASE_VERSION}-protos.tar.gz | sudo tar -zx
$ protoc google/showcase/v1alpha3/*.proto \
--proto_path=. \
Expand Down Expand Up @@ -116,7 +116,7 @@ The integration test needs a server to send its requests to. Download and run
the server so that gapic-showcase is available for the tests.

```sh
$ export GAPIC_SHOWCASE_VERSION=0.0.15
$ export GAPIC_SHOWCASE_VERSION=0.0.16
$ export OS=linux
$ export ARCH=amd64
$ curl -L https://github.com/googleapis/gapic-showcase/releases/download/v${GAPIC_SHOWCASE_VERSION}/gapic-showcase-${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.0.15"
rootCmd.Version = "0.0.16"
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 @@ -29,7 +29,7 @@ import (
)

const CURRENT_API = "v1alpha3"
const CURRENT_RELEASE = "0.0.15"
const CURRENT_RELEASE = "0.0.16"

func main() {
var bumpMajor, bumpMinor, bumpPatch bool
Expand Down

0 comments on commit e6ee01a

Please sign in to comment.