Skip to content

Commit 4b37420

Browse files
authored
Merge pull request #17 from dokku/master
Release 0.6.0
2 parents 2be6a26 + 9c13b30 commit 4b37420

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez
55
REPOSITORY = dokku-event-listener
66
HARDWARE = $(shell uname -m)
77
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
8-
BASE_VERSION ?= 0.5.0
8+
BASE_VERSION ?= 0.6.0
99
IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY)
1010
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish
1111

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ require (
1111
github.com/gogo/protobuf v1.3.1 // indirect
1212
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
1313
github.com/opencontainers/image-spec v1.0.1 // indirect
14-
github.com/rs/zerolog v1.18.0
14+
github.com/rs/zerolog v1.19.0
1515
github.com/sirupsen/logrus v1.5.0 // indirect
16-
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3 // indirect
1716
google.golang.org/grpc v1.28.1 // indirect
18-
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc // indirect
1917
)
2018

2119
replace github.com/docker/docker => github.com/docker/engine v0.0.0-20200309214505-aa6a9891b09c

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ github.com/rs/zerolog v1.16.0 h1:AaELmZdcJHT8m6oZ5py4213cdFK8XGXkB3dFdAQ+P7Q=
4747
github.com/rs/zerolog v1.16.0/go.mod h1:9nvC1axdVrAHcu/s9taAVfBuIdTZLVQmKQyvrUjF5+I=
4848
github.com/rs/zerolog v1.18.0 h1:CbAm3kP2Tptby1i9sYy2MGRg0uxIN9cyDb59Ys7W8z8=
4949
github.com/rs/zerolog v1.18.0/go.mod h1:9nvC1axdVrAHcu/s9taAVfBuIdTZLVQmKQyvrUjF5+I=
50+
github.com/rs/zerolog v1.19.0 h1:hYz4ZVdUgjXTBUmrkrw55j1nHx68LfOKIQk5IYtyScg=
51+
github.com/rs/zerolog v1.19.0/go.mod h1:IzD0RJ65iWH0w97OQQebJEvTZYvsCUm9WVLWBQrJRjo=
5052
github.com/sirupsen/logrus v1.5.0 h1:1N5EYkVAPEywqZRJd7cwnRtCb6xJx7NH3T3WUTF980Q=
5153
github.com/sirupsen/logrus v1.5.0/go.mod h1:+F7Ogzej0PZc/94MaYx/nvG9jOFMD2osvC3s+Squfpo=
5254
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type ShellCmd struct {
2929
Error error
3030
}
3131

32-
const APIVERSION = "1.40"
32+
const APIVERSION = "1.25"
3333
const DEBUG = true
3434
const DOKKU_APP_LABEL = "com.dokku.app-name"
3535

0 commit comments

Comments
 (0)