diff --git a/CHANGELOG.md b/CHANGELOG.md index a376c56..279613f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Makefile b/Makefile index 9fe6706..ab34913 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index d44970e..8a26e48 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -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 diff --git a/_tool/version b/_tool/version index 04e1946..8c43fb4 100644 --- a/_tool/version +++ b/_tool/version @@ -1 +1 @@ -v0.1.3 +v0.1.4 diff --git a/command_test.go b/command_test.go index 76279f2..1c05590 100644 --- a/command_test.go +++ b/command_test.go @@ -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() diff --git a/mog.go b/mog.go index d7c1992..bf2c459 100644 --- a/mog.go +++ b/mog.go @@ -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()