Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ejholmes committed Jan 17, 2017
1 parent 15b69f6 commit b7d0cb9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .walk/release
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ deps() {
release() {
local tag=v$(cat VERSION)

if [ -z "$GITHUB_TOKEN" ]; then
>&2 echo "GITHUB_TOKEN is missing."
return 1
fi

git tag ${tag} && git push --tags

gh release \
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## HEAD
## 0.2.1 (2017-01-17)

**Features**

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ go test ./...

## Releasing

Bump the version number in [VERSION](./VERSION), then run:
Bump the version number in [VERSION](./VERSION), update CHANGELOG.md, then run:

```console
$ walk -v version.go
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
// Auto generated from by 'walk version.go'
package main

const Version = "0.2.0"
const Version = "0.2.1"

0 comments on commit b7d0cb9

Please sign in to comment.