diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c3936c7..20ff8f91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,14 @@ 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] +## [1.3.0] - 2018-09-17 ### Added - Accept `prototool.json` files for configuation in addition to `prototool.yaml` files. - Add `--config-data` flag. -- Add `protoc-bin-path` and `protoc-wkt-path` flags to manually +- Add `--protoc-bin-path` and `--protoc-wkt-path` flags to manually set the paths for where `protoc` is run and where the - well-known types are included from. + Well-Known Types are included from. ## [1.2.0] - 2018-08-29 @@ -158,7 +158,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/v1.2.0...HEAD +[1.3.0]: https://github.com/uber/prototool/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/uber/prototool/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/uber/prototool/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/uber/prototool/compare/v1.0.0-rc1...v1.0.0 diff --git a/README.md b/README.md index 43807a91..e3e5f536 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ This installs the `prototool` binary, along with bash completion, zsh completion You can also install all of the assets on Linux or without Homebrew from GitHub Releases. ```bash -curl -sSL https://github.com/uber/prototool/releases/download/v1.2.0/prototool-$(uname -s)-$(uname -m).tar.gz | \ +curl -sSL https://github.com/uber/prototool/releases/download/v1.3.0/prototool-$(uname -s)-$(uname -m).tar.gz | \ tar -C /usr/local --strip-components 1 -xz ``` @@ -60,7 +60,7 @@ If you do not want to install bash completion, zsh completion, or man mages, you `prototool` binary from GitHub Releases as well. ```bash -curl -sSL https://github.com/uber/prototool/releases/download/v1.2.0/prototool-$(uname -s)-$(uname -m) \ +curl -sSL https://github.com/uber/prototool/releases/download/v1.3.0/prototool-$(uname -s)-$(uname -m) \ -o /usr/local/bin/prototool && \ chmod +x /usr/local/bin/prototool ``` @@ -449,7 +449,7 @@ results in a Docker image around 33MB that contains `prototool`, a cached `proto ```dockerfile FROM golang:1.11.0-alpine3.8 AS build -ARG PROTOTOOL_VERSION=1.2.0 +ARG PROTOTOOL_VERSION=1.3.0 ARG PROTOC_VERSION=3.6.1 ARG PROTOC_GEN_GO_VERSION=1.2.0 diff --git a/internal/vars/vars.go b/internal/vars/vars.go index d4a917ee..bc5e25de 100644 --- a/internal/vars/vars.go +++ b/internal/vars/vars.go @@ -25,7 +25,7 @@ package vars const ( // Version is the current version. - Version = "1.2.0-dev" + Version = "1.3.0" // DefaultProtocVersion is the default version of protoc from // github.com/protocolbuffers/protobuf to use.