Skip to content

Commit

Permalink
Bump version to v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
szyn committed Feb 6, 2018
1 parent a4a92d6 commit f07ff02
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## Change Log

### v0.1.3 (2018/01/22 14:21 +00:00)
### v0.1.4 (2018/02/06 16:26 +00:00)
- [#19](https://github.com/szyn/mog/pull/19) Update location based on workflow's time zone (@szyn)

### v0.1.3 (2018/01/22 14:27 +00:00)
- [#17](https://github.com/szyn/mog/pull/17) Use digdag-go-client (@szyn)
- [#16](https://github.com/szyn/mog/pull/16) Use Makefile for build and deploy (@szyn)
- [#15](https://github.com/szyn/mog/pull/15) Update to CircleCI2 (@szyn)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NAME := mog
# for build
VERSION := v0.1.3
VERSION := v0.1.4
REVISION := $(shell git rev-parse --short HEAD)
LDFLAGS := -ldflags="-s -w -X \"main.Version=$(VERSION)\" -X \"main.Revision=$(REVISION)\""
# for dist
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ You can download the binary from the [releases](https://github.com/szyn/mog/rele
e.g. os: `linux`, arch: `amd64`
Download to `/usr/local/bin`
```console
$ curl -L https://github.com/szyn/mog/releases/download/v0.1.3/mog_linux_amd64.tar.gz | tar zx -C /usr/local/bin
$ curl -L https://github.com/szyn/mog/releases/download/v0.1.4/mog_linux_amd64.tar.gz | tar zx -C /usr/local/bin
```

### macOS
Expand All @@ -39,7 +39,7 @@ $ brew install mog
You can also to use docker image:

```console
$ docker run --rm szyn/mog:v0.1.3
$ docker run --rm szyn/mog:v0.1.4
```

### go get
Expand All @@ -62,7 +62,7 @@ USAGE:
mog [global options] command [command options] [arguments...]

VERSION:
v0.1.3
v0.1.4

COMMANDS:
status, s Show a status of the task
Expand Down
2 changes: 1 addition & 1 deletion _tool/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.3
v0.1.4
2 changes: 1 addition & 1 deletion command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func TestHelp(t *testing.T) {
}

func TestVersion(t *testing.T) {
version := "v0.1.3"
version := "v0.1.4"

c := goRun("--version")
c.Run()
Expand Down
2 changes: 1 addition & 1 deletion mog.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

// VERSION is the cli version
const VERSION = "v0.1.3"
const VERSION = "v0.1.4"

func main() {
app := cli.NewApp()
Expand Down

0 comments on commit f07ff02

Please sign in to comment.