Skip to content

Commit

Permalink
bump version to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cezarsa committed Feb 6, 2019
1 parent 5dd1ad3 commit 306d47a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
18 changes: 5 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,28 @@ jobs:
- stage: test
script: make test
env: GOARCH=amd64
go: "1.10.x"
- stage: test
script: make test
env: GOARCH=386
go: "1.10.x"
go: "1.11.x"
- stage: test
script: make test
env: GOARCH=amd64
go: "master"
- stage: test
script: make test
env: GOARCH=386
go: "master"
- stage: integration
script: make integration
env: GOARCH=amd64
go: "1.10.x"
go: "1.11.x"
- stage: push to docker
script:
- echo $DOCKER_PASS | docker login -u $DOCKER_USER --password-stdin
- if [ -n "$TRAVIS_TAG" ]; then make TAG=$TRAVIS_TAG push; else make push; fi
go: "1.10.x"
go: "1.11.x"
if: (NOT type IN (pull_request)) AND (branch = master) OR (tag IS present)
- stage: push to packagecloud
script:
- if [ -n "$TRAVIS_TAG" ]; then curl -sL https://raw.githubusercontent.com/tsuru/push-to-packagecloud/master/push.sh | PACKAGE_NAME=deploy-agent bash; fi
go: "1.10.x"
go: "1.11.x"
env:
- GOARCH=amd64
- GO_FOR_RELEASE=1.10
- GO_FOR_RELEASE=1.11
if: tag IS present
matrix:
allow_failures:
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/tsuru/tsuru/fs"
)

const version = "0.2.8"
const version = "0.8.1"

type Config struct {
DockerHost string `envconfig:"DOCKER_HOST"`
Expand Down

0 comments on commit 306d47a

Please sign in to comment.