This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new 8383356 [KYUUBI #998] Update release doc
8383356 is described below
commit 83833562d109de4834064bbe4359fe0698a6f8e8
Author: Cheng Pan <[email protected]>
AuthorDate: Mon Aug 30 14:55:09 2021 +0800
[KYUUBI #998] Update release doc
<!--
Thanks for sending a pull request!
Here are some tips for you:
1. If this is your first time, please read our contributor guidelines:
https://kyuubi.readthedocs.io/en/latest/community/contributions.html
2. If the PR is related to an issue in
https://github.com/apache/incubator-kyuubi/issues, add '[KYUUBI #XXXX]' in your
PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'.
3. If the PR is unfinished, add '[WIP]' in your PR title, e.g.,
'[WIP][KYUUBI #XXXX] Your PR title ...'.
-->
### _Why are the changes needed?_
<!--
Please clarify why the changes are needed. For instance,
1. If you add a feature, you can talk about the use case of it.
2. If you fix a bug, you can clarify why it is a bug.
-->
### _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/latest/develop_tools/testing.html#running-tests)
locally before make a pull request
Closes #998 from pan3793/gpg.
Closes #998
f32c561e [Cheng Pan] Update doc
07d5fe3d [Cheng Pan] Update release doc
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
docs/community/release.md | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/docs/community/release.md b/docs/community/release.md
index 363b918..6d14174 100644
--- a/docs/community/release.md
+++ b/docs/community/release.md
@@ -103,16 +103,16 @@ gpg --list-keys --keyid-format SHORT
This will list your GPG keys. One of these should reflect your Apache account,
for example:
```shell
-pub ed25519/ED4E2E5B 2021-07-02 [SC]
- 2A145AF50886431A8FA86089F07E6C29ED4E2E5B
-uid [ultimate] Cheng Pan <[email protected]>
-sub cv25519/C7207C04 2021-07-02 [E]
+pub rsa4096 2021-08-30 [SC]
+ 8FC8075E1FDC303276C676EE8001952629BCC75D
+uid [ultimate] Cheng Pan <[email protected]>
+sub rsa4096 2021-08-30 [E]
```
-Here, the key ID is the 8-digit hex string in the pub line: `ED4E2E5B`.
+Here, the key ID is the 8-digit hex string in the pub line: `29BCC75D`.
To export the PGP public key, using:
```shell
-gpg --armor --export ED4E2E5B
+gpg --armor --export 29BCC75D
```
The last step is to update the KEYS file with your code signing key
@@ -120,7 +120,7 @@ https://www.apache.org/dev/openpgp.html#export-public-key
```shell
svn checkout --depth=files
"https://dist.apache.org/repos/dist/dev/incubator/kyuubi" work/svn-kyuubi
-... edit work/svn-kyuubi/KEYS file
+(gpg --list-sigs "${ASF_USERNAME}@apache.org" && gpg --export --armor
"${ASF_USERNAME}@apache.org") >> KEYS
svn commit --username "${ASF_USERNAME}" --password "${ASF_PASSWORD}" --message
"Update KEYS" work/svn-kyuubi
```
@@ -152,8 +152,7 @@ build/mvn versions:set -DgenerateBackupPoms=false \
-DnewVersion="${RELEASE_VERSION}" \
-Pkubernetes,kyuubi-extension-spark-3-1,spark-block-cleaner,tpcds
-git add .
-git commit -m "[RELEASE] Bump ${RELEASE_VERSION}"
+git commit -am "[RELEASE] Bump ${RELEASE_VERSION}"
```
3. Create a git tag for the release candidate.