You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by ji...@apache.org on 2023/01/06 11:15:05 UTC

[incubator-hugegraph-doc] 01/01: remove useless disclaim file

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

jin pushed a commit to branch imbajin-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-doc.git

commit c62b28a6c10180c93904c8c2f086125c861ac729
Author: imbajin <ji...@apache.org>
AuthorDate: Fri Jan 6 19:15:00 2023 +0800

    remove useless disclaim file
---
 .../docs/contribution-guidelines/validate-release.md | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/content/en/docs/contribution-guidelines/validate-release.md b/content/en/docs/contribution-guidelines/validate-release.md
index ff9d23e6..4a93d7ed 100644
--- a/content/en/docs/contribution-guidelines/validate-release.md
+++ b/content/en/docs/contribution-guidelines/validate-release.md
@@ -71,9 +71,10 @@ Do you really want to set this key to ultimate trust? (y/N) y #slect y, then q q
 
 # 3. Check the signature (make sure there is no Warning output, every source/binary file prompts Good Signature)
 #Single file verification
-gpg --verify xx.asc xxx-source.tar.gz
-gpg --verify xx.asc xxx-binary.tar.gz # 注: 我们目前没有 binary 后缀
-#for loop traversal verification (recommended)
+gpg --verify xx.asc xxx-src.tar.gz
+gpg --verify xx.asc xxx.tar.gz # Note: without the bin/binary suffix
+
+# One-click shell traversal verification (recommended)
 for i in *.tar.gz; do echo $i; gpg --verify $i.asc $i ; done
 
 ```
@@ -91,13 +92,12 @@ First of all, we need to download the package from the apache official `release-
 After decompressing `xxx-hugegraph-source.tar.gz`, Do the following checks:
 
 1. folders with `incubating`, and no **empty** files/folders
-2. `DISCLAIMER` file exists
-3. `LICENSE` + `NOTICE` file exists and the content is normal
-4. ** does not exist ** any binaries
-5. The source code files all contain the standard `ASF License` header ((this can be done using a plugin))
-6. Check whether the `pom.xml` version number of each parent/child module is consistent (and meet expectations)
-7. Check the first 3 to 5 commits, click to see if the modification is consistent with the source file
-8. Finally, make sure the source code works/compiles correctly (then look at tests and specs)
+2. `LICENSE` + `NOTICE` file exists and the content is normal
+3. **does not exist** binaries (without LICENSE)
+4. The source code files all contain the standard `ASF License` header (this could be done with the Maven-MAT plugin)
+5. Check whether the `pom.xml` version number of each parent/child module is consistent (and meet expectations)
+6. Check the first 3 to 5 commits, click to see if the modification is consistent with the source file
+7. Finally, make sure the source code works/compiles correctly
 
 ```bash
 # prefer to use/switch to java 11 for the following operations (compiling/running)