Skip to content

Commit

Permalink
chore: bump finch version to 0.1.1 (#94)
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Berning <[email protected]>

Issue #, if available:

*Description of changes:*

*Testing done:*



- [x] I've reviewed the guidance in CONTRIBUTING.md


#### License Acceptance

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.

Signed-off-by: Sam Berning <[email protected]>
  • Loading branch information
sam-berning authored Dec 6, 2022
1 parent 3f3bce5 commit b840e87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/finch/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

func finchVersion() string {
// TODO: Remove hardcoded version after the git can be access through buildtime
return "v0.1.0"
return "v0.1.1"
}

func newVersionCommand() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion e2e/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
var testVersion = func(o *option.Option) {
ginkgo.Context("Version", func() {
ginkgo.Specify("Test version", func() {
gomega.Expect(command.StdoutStr(o, "version")).To(gomega.Equal(fmt.Sprintf("Finch version: %s", "v0.1.0")))
gomega.Expect(command.StdoutStr(o, "version")).To(gomega.Equal(fmt.Sprintf("Finch version: %s", "v0.1.1")))
})
})
}

0 comments on commit b840e87

Please sign in to comment.