This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch branch-1.8
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/branch-1.8 by this push:
new ca367600e [KYUUBI #5273] Update release docs
ca367600e is described below
commit ca367600ed1888e2f53faa4587a73faf3e0e09ca
Author: Cheng Pan <[email protected]>
AuthorDate: Tue Sep 12 10:49:59 2023 +0800
[KYUUBI #5273] Update release docs
### _Why are the changes needed?_
As title
### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including
negative and positive cases if possible
- [ ] Add screenshots for manual tests if appropriate
- [ ] [Run
test](https://kyuubi.readthedocs.io/en/master/contributing/code/testing.html#running-tests)
locally before make a pull request
### _Was this patch authored or co-authored using generative AI tooling?_
No.
Closes #5273 from pan3793/doc-release.
Closes #5273
c4f96c69f [Cheng Pan] 1
2266af358 [Cheng Pan] nit
1d52c1a86 [Cheng Pan] Bump version for web-ui and update release docs
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
(cherry picked from commit e27ed443850ba338c7d344ac502b0d4e557b3683)
Signed-off-by: Cheng Pan <[email protected]>
---
docs/community/release.md | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/docs/community/release.md b/docs/community/release.md
index 8252669c0..f2c8541b1 100644
--- a/docs/community/release.md
+++ b/docs/community/release.md
@@ -191,6 +191,7 @@ The tag pattern is
`v${RELEASE_VERSION}-rc${RELEASE_RC_NO}`, e.g. `v1.7.0-rc0`
```shell
# Bump to the release version
build/mvn versions:set -DgenerateBackupPoms=false
-DnewVersion="${RELEASE_VERSION}"
+(cd kyuubi-server/web-ui && npm version "${RELEASE_VERSION}")
git commit -am "[RELEASE] Bump ${RELEASE_VERSION}"
# Create tag
@@ -198,6 +199,7 @@ git tag v${RELEASE_VERSION}-rc${RELEASE_RC_NO}
# Prepare for the next development version
build/mvn versions:set -DgenerateBackupPoms=false
-DnewVersion="${NEXT_VERSION}-SNAPSHOT"
+(cd kyuubi-server/web-ui && npm version "${NEXT_VERSION}-SNAPSHOT")
git commit -am "[RELEASE] Bump ${NEXT_VERSION}-SNAPSHOT"
# Push branch to apache remote repo
@@ -299,6 +301,9 @@ svn delete
https://dist.apache.org/repos/dist/dev/kyuubi/{RELEASE_TAG} \
--message "Remove deprecated Apache Kyuubi ${RELEASE_TAG}"
```
-## Publish docker image
+## Keep other artifacts up-to-date
+
+- Docker Image:
https://github.com/apache/kyuubi-docker/blob/master/release/release_guide.md
+- Helm Charts:
https://github.com/apache/kyuubi/blob/master/charts/kyuubi/Chart.yaml
+- Playground:
https://github.com/apache/kyuubi/blob/master/docker/playground/.env
-See steps in
`https://github.com/apache/kyuubi-docker/blob/master/release/release_guide.md`