Skip to content

Commit

Permalink
v0.0.10 Release Candidate. (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
landrito authored Jan 29, 2019
1 parent 522dceb commit e38a7ca
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Release History

### 0.0.10 / 2019-01-29
- Expose messaging and identity services when running `gapic-showcase run`.
- Refactor `Echo.WaitRequest` to follow API style for denoting time to live.
- Use GCLI Generated Code for the CLI cmd.
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.9
$ export GAPIC_SHOWCASE_VERSION=0.0.10
$ 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.9
$ export GAPIC_SHOWCASE_VERSION=0.0.10
$ docker pull gcr.io/gapic-showcase/gapic-showcase:${GAPIC_SHOWCASE_VERSION}
$ docker run -it gcr.io/gapic-showcase/gapic-showcase:${GAPIC_SHOWCASE_VERSION}
> 2018/09/19 02:13:09 Showcase listening on port: :7469
Expand Down Expand Up @@ -68,7 +68,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.9
$ export GAPIC_SHOWCASE_VERSION=0.0.10
$ 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 @@ -115,7 +115,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.9
$ export GAPIC_SHOWCASE_VERSION=0.0.10
$ 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.9"
rootCmd.Version = "0.0.10"
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.9"
const CURRENT_RELEASE = "0.0.10"

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

0 comments on commit e38a7ca

Please sign in to comment.