Skip to content

Commit

Permalink
version bump: v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Aug 29, 2019
1 parent 3e140f9 commit 8bb0d42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions genny/release/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ func (opts *Options) Validate() error {
opts.Version = "v0.0.1"
}

if !strings.HasPrefix(opts.Version, "v") {
opts.Version = "v" + opts.Version
}

v, err := semver.NewVersion(strings.TrimPrefix(opts.Version, "v"))
if err != nil {
return err
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main

// Version of main
const Version = "1.10.0"
const Version = "v1.11.0"

0 comments on commit 8bb0d42

Please sign in to comment.