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

Commit

Permalink
Preparing release v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bufdev committed Apr 3, 2019
1 parent bb2aec7 commit 3dd8aa6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.5.0] - 2019-04-03
- Add linters for enum field and message field comments. These linters are not
part of any lint group but can be manually added in a configuration file.
- Add `--generate-ignores` flag to the `lint` command to print out the value
Expand Down Expand Up @@ -228,7 +228,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.4.0...HEAD
[1.5.0]: https://github.com/uber/prototool/compare/v1.4.0...v1.5.0
[1.4.0]: https://github.com/uber/prototool/compare/v1.3.0...v1.4.0
[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
Expand Down
6 changes: 3 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You can also install all of the assets on Linux or without Homebrew from GitHub

```bash
curl -sSL \
https://github.com/uber/prototool/releases/download/v1.4.0/prototool-$(uname -s)-$(uname -m).tar.gz | \
https://github.com/uber/prototool/releases/download/v1.5.0/prototool-$(uname -s)-$(uname -m).tar.gz | \
tar -C /usr/local --strip-components 1 -xz
```

Expand All @@ -28,7 +28,7 @@ the `prototool` binary from GitHub Releases as well.

```bash
curl -sSL \
https://github.com/uber/prototool/releases/download/v1.4.0/prototool-$(uname -s)-$(uname -m) \
https://github.com/uber/prototool/releases/download/v1.5.0/prototool-$(uname -s)-$(uname -m) \
-o /usr/local/bin/prototool && \
chmod +x /usr/local/bin/prototool
```
Expand Down Expand Up @@ -85,7 +85,7 @@ export PATH := $(GOBIN):$(PATH)
# This can be a branch, tag, or commit.
# When changed, the given version of Prototool will be installed to
# .tmp/$(uname -s)/(uname -m)/bin/prototool
PROTOTOOL_VERSION := v1.4.0
PROTOTOOL_VERSION := v1.5.0

PROTOTOOL := $(TMP_VERSIONS)/prototool/$(PROTOTOOL_VERSION)
$(PROTOTOOL):
Expand Down
6 changes: 3 additions & 3 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ This document outlines how to create a release of prototool.
```
5. Update the version number in internal/vars/vars.go and the Installation
section of the README.md and verify that it matches what is in the changelog.
5. Update the version number in internal/vars/vars.go and the docs/install.md
and verify that it matches what is in the changelog.
```diff
-const Version = "1.21.0-dev"
Expand All @@ -56,7 +56,7 @@ This document outlines how to create a release of prototool.
6. Create a commit for the release.
```
git add internal/vars/vars.go README.md CHANGELOG.md
git add internal/vars/vars.go docs/install.md CHANGELOG.md
git commit -m "Preparing release v$VERSION"
```
Expand Down
2 changes: 1 addition & 1 deletion internal/vars/vars.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package vars

const (
// Version is the current version.
Version = "1.5.0-dev"
Version = "1.5.0"

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

0 comments on commit 3dd8aa6

Please sign in to comment.