Skip to content
This repository was archived by the owner on Mar 4, 2022. It is now read-only.

Commit add4d50

Browse files
author
Steve Ayers
committed
Preparing release v1.6.0
1 parent 379efc2 commit add4d50

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and 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

docs/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can also install all of the assets on Linux or without Homebrew from GitHub
1919

2020
```bash
2121
curl -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
3030
curl -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

9090
PROTOTOOL := $(TMP_VERSIONS)/prototool/$(PROTOTOOL_VERSION)
9191
$(PROTOTOOL):

internal/vars/vars.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ package vars
2323

2424
const (
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.

0 commit comments

Comments
 (0)