Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Loading