Skip to content

Commit

Permalink
Corrected version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rajch committed Jul 20, 2022
1 parent efe1567 commit 0cc81a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Also change in cmd/kutti/main.go
VERSION_MAJOR ?= 0
VERSION_MINOR ?= 3
BUILD_NUMBER ?= 2
BUILD_NUMBER ?= 1
PATCH_NUMBER ?=
VERSION_STRING = $(VERSION_MAJOR).$(VERSION_MINOR).$(BUILD_NUMBER)$(PATCH_NUMBER)

Expand Down
2 changes: 1 addition & 1 deletion cmd/kutti/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
// The linker loader will assign the current version string if built
// with the makefile. The value here is a fallback in case "go install"
// is used.
var version = "v0.3.2-goinstall"
var version = "v0.3.1-goinstall"

func main() {
cmd.SetVersion(version)
Expand Down
2 changes: 1 addition & 1 deletion invoke.build.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Param(
$VersionMajor = (property VERSION_MAJOR "0"),
$VersionMinor = (property VERSION_MINOR "3"),
$BuildNumber = (property BUILD_NUMBER "2"),
$BuildNumber = (property BUILD_NUMBER "1"),
$PatchString = (property PATCH_NUMBER "")
)

Expand Down

0 comments on commit 0cc81a1

Please sign in to comment.