This is an automated email from the ASF dual-hosted git repository.
jark pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/main by this push:
new 0be23c9b8 [docs] Create upgrade notes for
0be23c9b8 is described below
commit 0be23c9b8c6aebcb2256b5619aa58c23b4bf3b58
Author: Jark Wu <[email protected]>
AuthorDate: Thu Oct 23 20:26:43 2025 +0800
[docs] Create upgrade notes for
---
.../how-to-release/creating-a-fluss-release.mdx | 16 ++++++++--------
website/docs/maintenance/operations/upgrade-notes-0.8.md | 2 +-
website/docs/maintenance/operations/upgrade-notes-0.9.md | 2 +-
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/website/community/how-to-release/creating-a-fluss-release.mdx
b/website/community/how-to-release/creating-a-fluss-release.mdx
index 4ed4d7acf..508cd8c29 100644
--- a/website/community/how-to-release/creating-a-fluss-release.mdx
+++ b/website/community/how-to-release/creating-a-fluss-release.mdx
@@ -113,8 +113,8 @@ Create a release branch from the `main` branch in the
cloned Fluss repository. T
```bash
$ git checkout main
-$ git checkout -b release-${RELEASE_VERSION_SHORT}
-$ git push origin release-${RELEASE_VERSION_SHORT}
+$ git checkout -b release-${SHORT_RELEASE_VERSION}
+$ git push origin release-${SHORT_RELEASE_VERSION}
```
Update the version in the Helm Chart in:
@@ -128,8 +128,8 @@ For example, if you are releaseing a major version `0.8.0`,
you should replace a
And commit/push the version bump:
```bash
-$ git commit -m "Bump version to x.y.z" docker/helm/Chart.yaml
docker/helm/values.yaml docker/helm/README.md
-$ git push origin release-${RELEASE_VERSION_SHORT}
+$ git commit -m "[helm] Bump version to ${RELEASE_VERSION}"
docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
+$ git push origin release-${SHORT_RELEASE_VERSION}
```
</TabItem>
@@ -153,7 +153,7 @@ And commit/push the version bump:
```bash
$ git commit -m "Bump version to x.y.z" docker/helm/Chart.yaml
docker/helm/values.yaml docker/helm/README.md
-$ git push origin release-${RELEASE_VERSION_SHORT}
+$ git push origin release-${SHORT_RELEASE_VERSION}
```
</TabItem>
@@ -171,7 +171,7 @@ After creating the release branch, you should bump the
version of the main branc
```bash
$ cd tools
tools $ git checkout main
-tools $ OLD_VERSION=$CURRENT_SNAPSHOT_VERSION NEW_VERSION=$NEXT_VERSION
releasing/update_branch_version.sh
+tools $ OLD_VERSION=$CURRENT_SNAPSHOT_VERSION
NEW_VERSION=$NEXT_SNAPSHOT_VERSION releasing/update_branch_version.sh
tools $ git push origin main
```
@@ -191,7 +191,7 @@ Additionally, for the upgrade notes page of the version
currently being released
Commit the documentation changes, and push to the official repository.
```bash
-$ git commit -m "[docs] Create upgrade notes for $NEXT_VERSION"
+$ git commit -m "[docs] Create upgrade notes for $NEXT_SHORT_VERSION" .
$ git push origin main
```
</TabItem>
@@ -254,7 +254,7 @@ TAG="v${RELEASE_VERSION}-rc${RC_NUM}"
Now, checkout from the release branch, and create a release candidate local
branch:
```bash
-$ git checkout release-${RELEASE_VERSION_SHORT}
+$ git checkout release-${SHORT_RELEASE_VERSION}
$ cd tools
tools $ RELEASE_CANDIDATE=$RC_NUM RELEASE_VERSION=$RELEASE_VERSION
releasing/create_release_branch.sh
```
diff --git a/website/docs/maintenance/operations/upgrade-notes-0.8.md
b/website/docs/maintenance/operations/upgrade-notes-0.8.md
index 9f0c07cbd..6da378a06 100644
--- a/website/docs/maintenance/operations/upgrade-notes-0.8.md
+++ b/website/docs/maintenance/operations/upgrade-notes-0.8.md
@@ -1,6 +1,6 @@
---
title: Upgrade Notes
-sidebar_position: 3
+sidebar_class_name: hidden
---
# Upgrade Notes from v0.7 to v0.8
diff --git a/website/docs/maintenance/operations/upgrade-notes-0.9.md
b/website/docs/maintenance/operations/upgrade-notes-0.9.md
index e4c1f8fe5..7d0ba7b32 100644
--- a/website/docs/maintenance/operations/upgrade-notes-0.9.md
+++ b/website/docs/maintenance/operations/upgrade-notes-0.9.md
@@ -1,6 +1,6 @@
---
title: Upgrade Notes
-sidebar_class_name: hidden
+sidebar_position: 3
---
# Upgrade Notes from v0.8 to v0.9