Skip to content

Commit

Permalink
chore: draft v0.14.0 release (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
vchudnov-g authored Apr 27, 2021
1 parent f56dfda commit d87f3cc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release History

### v0.14.0 / 2021-04-27
- Fix collision between operation helper for `Echo.Wait` and generated mixin `Operations.WaitOpertation`
- REST endpoints: ensure enum values are received as string values
- REST endpoints: ensure full body responses
- Rest endpoints: enforce lower-camel-cased field names in request bodies and query params
- fix windows binary upload
- fix go vet/lint warnings
- pin Go version in CI
- fix release asset version
- add Code of Conduct
- add `SECURITY.md`

### v0.13.0 / 2021-02-24
- Auto-generate REST endpoints for Showcase services via `genrest` (partial)
- Add Compliance service for generators to use to test REST-transcoding their
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ page, or simply by installing from source using go.

### Docker
```sh
$ docker pull gcr.io/gapic-images/gapic-showcase:0.13.0
$ docker pull gcr.io/gapic-images/gapic-showcase:0.14.0
$ docker run \
--rm \
-p 7469:7469/tcp \
-p 7469:7469/udp \
gcr.io/gapic-images/gapic-showcase:0.13.0 \
gcr.io/gapic-images/gapic-showcase:0.14.0 \
--help
> Root command of gapic-showcase
>
Expand All @@ -51,7 +51,7 @@ $ docker run \

### Binary
```sh
$ export GAPIC_SHOWCASE_VERSION=0.13.0
$ export GAPIC_SHOWCASE_VERSION=0.14.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}.tar.gz | 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 Actions.
// The template looks weird on purpose. Leaving as a single line causes the
// output to append an extra character.
rootCmd.Version = "0.13.0"
rootCmd.Version = "0.14.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.13.0"
const currentReleaseVersion = "0.14.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 run in
Expand Down

0 comments on commit d87f3cc

Please sign in to comment.