File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed 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.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ Unreleased ]
7
+ ## [ 1.8.0 ] - 2019-06-10
8
8
- Update the default ` protoc ` version to ` 3.8.0 ` .
9
9
- Parse updated ` protoc ` output for ` 3.8.0 ` .
10
10
- 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.
244
244
### Added
245
245
- Initial release.
246
246
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
248
248
[ 1.7.0 ] : https://github.com/uber/prototool/compare/v1.6.0...v1.7.0
249
249
[ 1.6.0 ] : https://github.com/uber/prototool/compare/v1.5.0...v1.6.0
250
250
[ 1.5.0 ] : https://github.com/uber/prototool/compare/v1.4.0...v1.5.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
19
19
20
20
``` bash
21
21
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 | \
23
23
tar -C /usr/local --strip-components 1 -xz
24
24
```
25
25
@@ -28,7 +28,7 @@ the `prototool` binary from GitHub Releases as well.
28
28
29
29
``` bash
30
30
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) \
32
32
-o /usr/local/bin/prototool && \
33
33
chmod +x /usr/local/bin/prototool
34
34
```
@@ -85,7 +85,7 @@ export PATH := $(GOBIN):$(PATH)
85
85
# This can be a branch, tag, or commit.
86
86
# When changed, the given version of Prototool will be installed to
87
87
# .tmp/$(uname -s)/(uname -m)/bin/prototool
88
- PROTOTOOL_VERSION := v1.7 .0
88
+ PROTOTOOL_VERSION := v1.8 .0
89
89
90
90
PROTOTOOL := $(TMP_VERSIONS ) /prototool/$(PROTOTOOL_VERSION )
91
91
$(PROTOTOOL ) :
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ package vars
23
23
24
24
const (
25
25
// Version is the current version.
26
- Version = "1.8.0-dev "
26
+ Version = "1.8.0"
27
27
28
28
// DefaultProtocVersion is the default version of protoc from
29
29
// github.com/protocolbuffers/protobuf to use.
You can’t perform that action at this time.
0 commit comments