diff --git a/CHANGELOG.md b/CHANGELOG.md index 024230b..935dd32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Change Log +### v0.1.6 (2018/02/13 14:04 +00:00) +- [#21](https://github.com/szyn/mog/pull/21) Update digdag-go-client (@szyn) + ### v0.1.5 (2018/02/12 14:09 +00:00) - [#20](https://github.com/szyn/mog/pull/20) Fix unexpected location (@szyn) diff --git a/Gopkg.lock b/Gopkg.lock index f85f248..44233ac 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -112,8 +112,8 @@ [[projects]] name = "github.com/szyn/digdag-go-client" packages = ["."] - revision = "e8e80672d352c4dcf245dfc8f502b1e350c5f6f3" - version = "v0.1.0" + revision = "537e2b0fc8eef1fceecd69d407400c3f92561e2b" + version = "v0.1.1" [[projects]] name = "github.com/urfave/cli" @@ -142,6 +142,6 @@ [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "e87af0cac7ba219d0540889303f9275e0645fd87ab05ccc17a51f10d336fee10" + inputs-digest = "7f3038469fea92d096cc6377921e6d3f90c27b3e4e175bfa2e3e24ec87ad2bc7" solver-name = "gps-cdcl" solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml index b7248c1..cf22dc1 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -34,4 +34,4 @@ [[constraint]] name = "github.com/szyn/digdag-go-client" - version = "0.1.0" + version = "0.1.1" diff --git a/Makefile b/Makefile index 6d81b32..58c9eec 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ NAME := mog # for build -VERSION := v0.1.5 +VERSION := v0.1.6 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 495b0ba..e3ee435 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.5/mog_linux_amd64.tar.gz | tar zx -C /usr/local/bin +$ curl -L https://github.com/szyn/mog/releases/download/v0.1.6/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.5 +$ docker run --rm szyn/mog:v0.1.6 ``` ### go get @@ -62,7 +62,7 @@ USAGE: mog [global options] command [command options] [arguments...] VERSION: - v0.1.5 + v0.1.6 COMMANDS: status, s Show a status of the task diff --git a/_tool/version b/_tool/version index 027a383..82942c3 100644 --- a/_tool/version +++ b/_tool/version @@ -1 +1 @@ -v0.1.5 +v0.1.6 diff --git a/command_test.go b/command_test.go index 39add03..4f3e3e4 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.5" + version := "v0.1.6" c := goRun("--version") c.Run() diff --git a/mog.go b/mog.go index af21143..73de92b 100644 --- a/mog.go +++ b/mog.go @@ -11,7 +11,7 @@ import ( ) // VERSION is the cli version -const VERSION = "v0.1.5" +const VERSION = "v0.1.6" func main() { app := cli.NewApp() diff --git a/util/location.go b/util/location.go index cef5a0d..9278d82 100644 --- a/util/location.go +++ b/util/location.go @@ -23,5 +23,8 @@ func FetchLocation(c *digdag.Client, projectName, workflowName string) (*time.Lo return nil, err } + // Set workflow's timezone + time.Local = loc + return loc, nil }