From 7eedc36835ee9573b6286c99a57e618373a38a1d Mon Sep 17 00:00:00 2001 From: Moritz Zimmer Date: Mon, 14 Dec 2020 15:16:47 +0100 Subject: [PATCH] fixed semver --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 94b896b..ad6958d 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ $(SEMBUMP): GO111MODULE=off go get -u github.com/jessfraz/junk/sembump .PHONY: bump-version -BUMP := patch +BUMP ?= patch bump-version: $(SEMBUMP) ## Bump the version in the version file. Set BUMP to [ patch | major | minor ]. @echo "+ $@" $(eval NEW_VERSION = $(shell $(BINDIR)/sembump --kind $(BUMP) $(VERSION)))