You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2021/08/30 06:59:13 UTC

[incubator-kyuubi] branch branch-1.3 updated: [KYUUBI #998] Update release doc

This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git


The following commit(s) were added to refs/heads/branch-1.3 by this push:
     new eb1832c  [KYUUBI #998] Update release doc
eb1832c is described below

commit eb1832c7037ebd950e6e4d0392269cb6c41d23ab
Author: Cheng Pan <ch...@apache.org>
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 ...'.
    -->
    
    <!--
    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.
    -->
    
    - [ ] 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 <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 docs/community/release.md | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/docs/community/release.md b/docs/community/release.md
index 05afd1e..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 <ch...@apache.org>
-sub   cv25519/C7207C04 2021-07-02 [E]
+pub   rsa4096 2021-08-30 [SC]
+      8FC8075E1FDC303276C676EE8001952629BCC75D
+uid           [ultimate] Cheng Pan <ch...@apache.org>
+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,7 +152,6 @@ build/mvn versions:set -DgenerateBackupPoms=false \
   -DnewVersion="${RELEASE_VERSION}" \
   -Pkubernetes,kyuubi-extension-spark-3-1,spark-block-cleaner,tpcds
 
-git add .
 git commit -am "[RELEASE] Bump ${RELEASE_VERSION}"
 ```