Skip to content

Commit

Permalink
chore: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
VaibhavPage committed Feb 26, 2020
1 parent a3b1e06 commit 79d6210
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
root: .
paths:
- ./dist
# push_bin pushes both the linux and mac binaries to a github release when a new tag is added to the project
# push_bin pushes both the linux binaries to a github release when a new tag is added to the project
push_bin:
environment:
- CIRCLE_PROJECT_USERNAME: argoproj
Expand Down Expand Up @@ -81,5 +81,5 @@ workflows:
branches:
ignore: /.*/
tags:
# only recognise tags with semantic versioning e.g. 0.1.0
only: /^\d+\.\d+\.\d+.*$/
# only recognise tags with semantic versioning e.g. v0.1.0
only: /^v\d+\.\d+\.\d+.*$/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ override LDFLAGS += \
# docker image publishing options
DOCKER_PUSH?=true
IMAGE_NAMESPACE?=argoproj
IMAGE_TAG?=v0.12.2
IMAGE_TAG?=v0.13.0-rc
BUILD_BINARY?=true

ifeq (${DOCKER_PUSH},true)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2
v0.13.0-rc
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
// Version information set by link flags during build. We fall back to these sane
// default values when we build outside the Makefile context (e.g. go build or go test).
var (
version = "v0.12.2" // value from VERSION file
version = "v0.13.0-rc" // value from VERSION file
buildDate = "1970-01-01T00:00:00Z" // output from `date -u +'%Y-%m-%dT%H:%M:%SZ'`
gitCommit = "" // output from `git rev-parse HEAD`
gitTag = "" // output from `git describe --exact-match --tags HEAD` (if clean tree state)
Expand Down

0 comments on commit 79d6210

Please sign in to comment.