Skip to content

Commit 09ba8a5

Browse files
authored
Fix: make bump-version and make set-version (#765)
Fix make bump-version and make set-version
1 parent 91ff9fa commit 09ba8a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ test: deps-build
2727

2828
# Release a new version. Specify the version "bump" with BUMP
2929
bump-version: check-clean deps-release check
30-
cargo set-version --workspace --bump $(BUMP) -p
30+
cargo set-version --workspace --bump $(BUMP)
3131
cargo update --workspace
3232
@echo "Bumped actors to version $$($(MAKE) --quiet version)"
3333

3434
set-version: check-clean deps-release check
35-
cargo set-version --workspace $(VERSION) -p
35+
cargo set-version --workspace $(VERSION)
3636
cargo update --workspace
3737
@echo "Set actors to version $(VERSION)"
3838

0 commit comments

Comments
 (0)