Skip to content

Commit

Permalink
Bump version to v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
szyn committed Feb 15, 2018
1 parent 3565b26 commit 2b538b5
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
6 changes: 3 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

[[constraint]]
name = "github.com/szyn/digdag-go-client"
version = "0.1.0"
version = "0.1.1"
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.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
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.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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion _tool/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.5
v0.1.6
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.5"
version := "v0.1.6"

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.5"
const VERSION = "v0.1.6"

func main() {
app := cli.NewApp()
Expand Down
3 changes: 3 additions & 0 deletions util/location.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 2b538b5

Please sign in to comment.