Skip to content

Commit 01b6f40

Browse files
author
Steve Ayers
committed
Preparing release v1.8.0
1 parent 19ab9b7 commit 01b6f40

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

+2-2
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.8.0] - 2019-06-10
88
- Update the default `protoc` version to `3.8.0`.
99
- Parse updated `protoc` output for `3.8.0`.
1010
- Fix issue where there were an unbounded number of `protoc` calls were
@@ -244,7 +244,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
244244
### Added
245245
- Initial release.
246246

247-
[Unreleased]: https://github.com/uber/prototool/compare/v1.7.0...HEAD
247+
[1.8.0]: https://github.com/uber/prototool/compare/v1.7.0...v1.8.0
248248
[1.7.0]: https://github.com/uber/prototool/compare/v1.6.0...v1.7.0
249249
[1.6.0]: https://github.com/uber/prototool/compare/v1.5.0...v1.6.0
250250
[1.5.0]: https://github.com/uber/prototool/compare/v1.4.0...v1.5.0

docs/install.md

+3-3
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.7.0/prototool-$(uname -s)-$(uname -m).tar.gz | \
22+
https://github.com/uber/prototool/releases/download/v1.8.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.7.0/prototool-$(uname -s)-$(uname -m) \
31+
https://github.com/uber/prototool/releases/download/v1.8.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.7.0
88+
PROTOTOOL_VERSION := v1.8.0
8989

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

internal/vars/vars.go

+1-1
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.8.0-dev"
26+
Version = "1.8.0"
2727

2828
// DefaultProtocVersion is the default version of protoc from
2929
// github.com/protocolbuffers/protobuf to use.

0 commit comments

Comments
 (0)