This repository was archived by the owner on Mar 4, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7- ## [ Unreleased ]
7+ ## [ 1.6.0 ] - 2019-04-05
88- Dynamically resolve ` google.protobuf.Any ` values for gRPC error details.
99
1010
@@ -232,7 +232,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
232232### Added
233233- Initial release.
234234
235- [ Unreleased ] : https://github.com/uber/prototool/compare/v1.5.0...HEAD
235+ [ 1.6.0 ] : https://github.com/uber/prototool/compare/v1.5.0...v1.6.0
236236[ 1.5.0 ] : https://github.com/uber/prototool/compare/v1.4.0...v1.5.0
237237[ 1.4.0 ] : https://github.com/uber/prototool/compare/v1.3.0...v1.4.0
238238[ 1.3.0 ] : https://github.com/uber/prototool/compare/v1.2.0...v1.3.0
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ You can also install all of the assets on Linux or without Homebrew from GitHub
1919
2020``` bash
2121curl -sSL \
22- https://github.com/uber/prototool/releases/download/v1.5 .0/prototool-$( uname -s) -$( uname -m) .tar.gz | \
22+ https://github.com/uber/prototool/releases/download/v1.6 .0/prototool-$( uname -s) -$( uname -m) .tar.gz | \
2323 tar -C /usr/local --strip-components 1 -xz
2424```
2525
@@ -28,7 +28,7 @@ the `prototool` binary from GitHub Releases as well.
2828
2929``` bash
3030curl -sSL \
31- https://github.com/uber/prototool/releases/download/v1.5 .0/prototool-$( uname -s) -$( uname -m) \
31+ https://github.com/uber/prototool/releases/download/v1.6 .0/prototool-$( uname -s) -$( uname -m) \
3232 -o /usr/local/bin/prototool && \
3333 chmod +x /usr/local/bin/prototool
3434```
@@ -85,7 +85,7 @@ export PATH := $(GOBIN):$(PATH)
8585# This can be a branch, tag, or commit.
8686# When changed, the given version of Prototool will be installed to
8787# .tmp/$(uname -s)/(uname -m)/bin/prototool
88- PROTOTOOL_VERSION := v1.5 .0
88+ PROTOTOOL_VERSION := v1.6 .0
8989
9090PROTOTOOL := $(TMP_VERSIONS ) /prototool/$(PROTOTOOL_VERSION )
9191$(PROTOTOOL ) :
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ package vars
2323
2424const (
2525 // Version is the current version.
26- Version = "1.6.0-dev "
26+ Version = "1.6.0"
2727
2828 // DefaultProtocVersion is the default version of protoc from
2929 // github.com/protocolbuffers/protobuf to use.
You can’t perform that action at this time.
0 commit comments