Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yamamoto-febc committed Mar 11, 2020
1 parent 5ef7c46 commit cddd9f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
TEST?=$$(go list ./... | grep -v vendor)
VETARGS?=-all
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
CURRENT_VERSION = $(gobump show -r version/)
CURRENT_VERSION = $$(gobump show -r version/)

default: test vet

.PHONY: tools
tools:
GO111MODULE=off go get github.com/x-motemen/gobump/cmd/gobump
GO111MODULE=off go get golang.org/x/tools/cmd/goimports
GO111MODULE=off go get github.com/tcnksm/ghr
GO111MODULE=off go get github.com/client9/misspell/cmd/misspell
Expand Down Expand Up @@ -71,6 +72,6 @@ prepare-homebrew:
sh -c "'$(CURDIR)/scripts/update_homebrew_formula.sh' '$(CURRENT_VERSION)'"

.PHONY: release
release: build-envs
release:
ghr v${CURRENT_VERSION} bin/

2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// Version is current packer-builder-sakuracloud version string
var Version = "0.5.0"
var Version = "0.5.1"

0 comments on commit cddd9f1

Please sign in to comment.