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

rlenferink pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/celix-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 245ea8c  MD5 checksum is deprecated and should not be used anymore
245ea8c is described below

commit 245ea8cb856ded4ee08c9e64c328826834faaeec
Author: Roy Lenferink <[email protected]>
AuthorDate: Mon May 11 14:28:44 2020 +0200

    MD5 checksum is deprecated and should not be used anymore
    
    Info: https://infra.apache.org/release-distribution#sigs-and-sums
---
 source/contributing/releasing.md | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/source/contributing/releasing.md b/source/contributing/releasing.md
index 89a6078..9c211de 100644
--- a/source/contributing/releasing.md
+++ b/source/contributing/releasing.md
@@ -126,18 +126,15 @@ $ ln -s celix celix-X.Y.Z
 $ tar --exclude=".*" -hczf celix-X.Y.Z.tar.gz celix-X.Y.Z
 
 # The create symbolic link can be removed
-$ celix celix-X.Y.Z
+$ unlink celix-X.Y.Z
 ```
 
 After creating the artifact, the file has to be signed. More information about 
signing can be found at 
 [Release signing](http://www.apache.org/dev/release-signing.html).
 
 ```bash
-# Generate MD5 checksum
-$ md5 celix-X.Y.Z.tar.gz > celix-X.Y.Z.tar.gz.md5
-
 # Generate SHA512 checksum
-$ gpg --print-md SHA512 celix-X.Y.Z.tar.gz > celix-X.Y.Z.tar.gz.sha
+$ gpg --print-md SHA512 celix-X.Y.Z.tar.gz > celix-X.Y.Z.tar.gz.sha512
 
 # Generate ASCII signature
 $ gpg --armor --output celix-X.Y.Z.tar.gz.asc --detach-sig celix-X.Y.Z.tar.gz

Reply via email to