This is an automated email from the ASF dual-hosted git repository.
zike pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-python.git
The following commit(s) were added to refs/heads/main by this push:
new 5784c40 Fix incorrect command in release doc (#176)
5784c40 is described below
commit 5784c4003384daac7dea02c4667d90d8223baf75
Author: Zike Yang <[email protected]>
AuthorDate: Tue Dec 19 18:15:26 2023 +0800
Fix incorrect command in release doc (#176)
The command in the release doc is incorrect. It will lose the double quotes
for the version.
---
RELEASE.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/RELEASE.md b/RELEASE.md
index ce74152..f4f1cc8 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -71,7 +71,7 @@ For patch releases (`X.Y.Z`), you need to reuse the existing
branch:
```bash
git checkout branch-X.Y
-sed -i 's/__version__.*/__version__=X.Y.Z/' pulsar/__about__.py
+perl -pi -e "s/__version__.*/__version__=\"X.Y.Z\"/" pulsar/__about__.py
git add pulsar/__about__.py
git commit -m "Bump version to X.Y.Z"
git push origin branch-X.Y