Skip to content

Commit

Permalink
Merge pull request #11 from FairwindsOps/bm/update-nova-version
Browse files Browse the repository at this point in the history
Fix #8: fix goreleaser version update during  build
  • Loading branch information
makoscafee committed Aug 13, 2020
2 parents fdd7181 + 88accf2 commit dae7abd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
@@ -1,2 +1,10 @@
# x.x.x
# Changelog

## 1.0.1

* Build docker image for tags
* Fix #8: update release version during build

## 1.0.0

* Migrated existing functionality from private repository
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -20,9 +20,9 @@ import (

var (
// VERSION is set during build
VERSION = "0.0.1"
version = "0.0.1"
)

func main() {
cmd.Execute(VERSION)
cmd.Execute(version)
}

0 comments on commit dae7abd

Please sign in to comment.