diff --git a/.github/scripts/publish.sh b/.github/scripts/publish.sh index a613f90d..54853d33 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[0-9]+/\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 8a75dd88..3f7a85a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,3 @@ -## v0.9.v0.9.1 - Fixed bug: delete deadline grpc timeout on AttachStream ## v0.9.1 diff --git a/src/Ydb.Sdk/src/Version.cs b/src/Ydb.Sdk/src/Version.cs index 0df4072f..df1a1d49 100644 --- a/src/Ydb.Sdk/src/Version.cs +++ b/src/Ydb.Sdk/src/Version.cs @@ -4,5 +4,5 @@ public static class Version { public const uint Major = 0; public const uint Minor = 9; - public const uint Patch = v0.9.1; + public const uint Patch = 1; }