Skip to content

Commit

Permalink
0.0.9 (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
landrito authored Dec 28, 2018
1 parent 8fb598e commit f16f6e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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.8
$ export GAPIC_SHOWCASE_VERSION=0.0.9
$ 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.8
$ export GAPIC_SHOWCASE_VERSION=0.0.9
$ 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.8
$ export GAPIC_SHOWCASE_VERSION=0.0.9
$ 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.8
$ export GAPIC_SHOWCASE_VERSION=0.0.9
$ 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/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var rootCmd = &cobra.Command{
Long: `Showcase is an API used to showcase Generate API Client (GAPIC)
features. This tool is used run the gapic-showcase server, and used to make
to an already running server.`,
Version: "0.0.8",
Version: "0.0.9",
}

// Execute adds all child commands to the root command and sets flags appropriately.
Expand Down
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.8"
const CURRENT_RELEASE = "0.0.9"

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

0 comments on commit f16f6e8

Please sign in to comment.