From b1c436e14b4676ef0595ff4eff7bf75bb4243982 Mon Sep 17 00:00:00 2001 From: KirillKurdyukov Date: Wed, 4 Dec 2024 10:48:41 +0300 Subject: [PATCH] fix evaluate patch version --- .github/scripts/publish.sh | 2 +- CHANGELOG.md | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/scripts/publish.sh b/.github/scripts/publish.sh index c55d0006..a613f90d 100644 --- a/.github/scripts/publish.sh +++ b/.github/scripts/publish.sh @@ -11,7 +11,7 @@ fi; LAST_TAG=$(git tag | tail -n 1); MAJOR=$(echo $LAST_TAG | sed -E 's/v([0-9]+)\..*/\1/'); MINOR=$(echo $LAST_TAG | sed -E 's/v[0-9]+\.([0-9]+)\..*/\1/'); -PATCH=$(echo $LAST_TAG | sed -E 's/v[0-9]+\.[0-9]+\.([0-9]+)-rc/\1/'); +PATCH=$(echo $LAST_TAG | sed -E 's/v[0-9]+\.[0-9]+\.([0-9]+)-rc[0-9]+/\1/'); RC=0; if [ "$RELEASE_CANDIDATE" = true ] diff --git a/CHANGELOG.md b/CHANGELOG.md index c7eea201..0b7d0d6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,3 @@ -## v0.9.1-rc0 - Topic Writer updated release candidate: * Do not send messages that have a timeout by cancelToken. * If your value serializer throws an exception, this will be wrapped in a WriterException with unspecified status.