From 1b466aade7bfd60de25608a370e6559c10969132 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 12 Aug 2021 17:43:34 -0400 Subject: [PATCH] Add --exclude-unchanged cargo-release flag, from my own feature branch --- implementations/rust/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/implementations/rust/Makefile b/implementations/rust/Makefile index 3a1625b..625c9ec 100644 --- a/implementations/rust/Makefile +++ b/implementations/rust/Makefile @@ -23,4 +23,7 @@ test-all: RELEASE_DRY_RUN=--dry-run release-%: - PUBLISH_GRACE_SLEEP=15 cargo release $(RELEASE_DRY_RUN) -vv --no-dev-version $* + PUBLISH_GRACE_SLEEP=15 cargo release \ + $(RELEASE_DRY_RUN) \ + -vv --no-dev-version --exclude-unchanged \ + $*