Skip to content

Commit

Permalink
release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MrVinkel committed Jan 14, 2025
1 parent 33048f3 commit 08d0011
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ define build-os-arch
build-$(1)-$(2):
@echo Building bump-$(1)-$(2) $(VERSION)
@$(eval VERSIONFLAGS=-X '$(VERSION_PACKAGE).BumpVersion=$(VERSION)')
@CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -o ./bin/bump-$(1)-$(2) -ldflags="-w -s $(VERSIONFLAGS)" ./cmd
@CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -o ./bin/bump-$(1)-$(2) -ldflags="-w -s $(VERSIONFLAGS)" ./cmd/bump
all: build-$(1)-$(2)
endef
$(foreach o,$(OS), $(foreach a,$(ARCH), $(eval $(call build-os-arch,$(o),$(a)))))
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
let
pkgs = nixpkgs.legacyPackages.${system};

lastTag = "v0.2.0";
lastTag = "v0.2.1";

revision =
if (self ? shortRev)
Expand Down

0 comments on commit 08d0011

Please sign in to comment.