Skip to content

Commit

Permalink
Version bump: 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abhchand committed Jun 21, 2022
1 parent 71231dc commit def8a01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

// The build script parses the version from this line.
// Check the regex in `build.sh` before modifying this!
var version = "0.1.0-beta.1"
var version = "0.1.0"

// Formatted formats the version as a printable string.
func Formatted() string {
Expand Down
4 changes: 2 additions & 2 deletions pkg/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
)

func TestFormatted(t *testing.T) {
assert.Equal(t, "v0.1.0-beta.1", Formatted())
assert.Equal(t, "v0.1.0", Formatted())
}

func TestVersion(t *testing.T) {
assert.Equal(t, "0.1.0-beta.1", Version())
assert.Equal(t, "0.1.0", Version())
}

0 comments on commit def8a01

Please sign in to comment.