diff --git a/CHANGELOG.md b/CHANGELOG.md index 89e45ec1d6..7c488b6e1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased] +## [v1.19.0] - 2023-05-17 - Add `--create` flag to `buf push` to create a repository if it does not exist. The user is also required to specify the visibility using `--create-visibility`. @@ -878,7 +878,7 @@ buf check breaking proto --against .git#branch=master,subdir=proto Initial beta release. -[Unreleased]: https://github.com/bufbuild/buf/compare/v1.18.0...HEAD +[v1.19.0]: https://github.com/bufbuild/buf/compare/v1.18.0...v1.19.0 [v1.18.0]: https://github.com/bufbuild/buf/compare/v1.17.0...v1.18.0 [v1.17.0]: https://github.com/bufbuild/buf/compare/v1.16.0...v1.17.0 [v1.16.0]: https://github.com/bufbuild/buf/compare/v1.15.1...v1.16.0 diff --git a/README.md b/README.md index 1e04c6cf43..734fc09d95 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Release](https://img.shields.io/github/v/release/bufbuild/buf?include_prereleases)][badges_release] [![CI](https://github.com/bufbuild/buf/workflows/ci/badge.svg)][badges_ci] [![Docker](https://img.shields.io/docker/pulls/bufbuild/buf)][badges_docker] -[![Homebrew](https://img.shields.io/badge/homebrew-v1.18.0-blue)][badges_homebrew] +[![Homebrew](https://img.shields.io/badge/homebrew-v1.19.0-blue)][badges_homebrew] [![AUR](https://img.shields.io/aur/version/buf)][badges_aur] [![Slack](https://img.shields.io/badge/slack-buf-%23e01563)][badges_slack] diff --git a/private/buf/bufcli/bufcli.go b/private/buf/bufcli/bufcli.go index 65682b2070..9361c134a1 100644 --- a/private/buf/bufcli/bufcli.go +++ b/private/buf/bufcli/bufcli.go @@ -63,7 +63,7 @@ import ( const ( // Version is the CLI version of buf. - Version = "1.18.1-dev" + Version = "1.19.0" inputHTTPSUsernameEnvKey = "BUF_INPUT_HTTPS_USERNAME" inputHTTPSPasswordEnvKey = "BUF_INPUT_HTTPS_PASSWORD"