From 170c8209e2af27dd4768aa0d4449eac8d21a4a53 Mon Sep 17 00:00:00 2001 From: Alex Peats-Bond Date: Thu, 16 Aug 2018 17:04:47 -0700 Subject: [PATCH] Preparing release v1.0.0-rc1 --- CHANGELOG.md | 8 +++++--- README.md | 2 +- internal/vars/vars.go | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3004b18f..dba5417b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] -- No changes yet. +## [1.0.0-rc1] 2018-08-16 +### Fixed +- Fixed regression where `prototool version` did not output 'Git commit' and + 'Built'. ## [0.7.1] 2018-08-15 @@ -132,7 +134,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Added - Initial release. -[Unreleased]: https://github.com/uber/prototool/compare/v0.7.1...HEAD +[1.0.0-rc1]: https://github.com/uber/prototool/compare/v0.7.1...v1.0.0-rc1 [0.7.1]: https://github.com/uber/prototool/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/uber/prototool/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/uber/prototool/compare/v0.5.0...v0.6.0 diff --git a/README.md b/README.md index 4f989dc5..714a6941 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Prototool accomplishes this by downloading and calling protoc on the fly for you Install Prototool from GitHub Releases. ``` -curl -sSL https://github.com/uber/prototool/releases/download/v0.7.1/prototool-$(uname -s)-$(uname -m) \ +curl -sSL https://github.com/uber/prototool/releases/download/v1.0.0-rc1/prototool-$(uname -s)-$(uname -m) \ -o /usr/local/bin/prototool && \ chmod +x /usr/local/bin/prototool ``` diff --git a/internal/vars/vars.go b/internal/vars/vars.go index a3c1f499..c51c948c 100644 --- a/internal/vars/vars.go +++ b/internal/vars/vars.go @@ -25,7 +25,7 @@ package vars const ( // Version is the current version. - Version = "0.8.0-dev" + Version = "1.0.0-rc1" // DefaultProtocVersion is the default version of protoc from // github.com/google/protobuf to use.