Repository: parquet-cpp
Updated Branches:
refs/heads/master cf6992aa8 -> 9ba0d48b2
PARQUET-1096: Update sha{1, 256, 512} checksums per latest ASF release policy
See http://www.apache.org/dev/release-distribution#sigs-and-sums
Author: Uwe L. Korn <[email protected]>
Closes #392 from xhochy/PARQUET-1096 and squashes the following commits:
591c727 [Uwe L. Korn] PARQUET-1096: Update sha{1, 256, 512} checksums per
latest ASF release policy
Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/9ba0d48b
Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/9ba0d48b
Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/9ba0d48b
Branch: refs/heads/master
Commit: 9ba0d48b2d88d0c1ff643ee014f88d3ed39cf540
Parents: cf6992a
Author: Uwe L. Korn <[email protected]>
Authored: Mon Sep 11 11:31:22 2017 -0400
Committer: Wes McKinney <[email protected]>
Committed: Mon Sep 11 11:31:22 2017 -0400
----------------------------------------------------------------------
dev/release/release-candidate | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/9ba0d48b/dev/release/release-candidate
----------------------------------------------------------------------
diff --git a/dev/release/release-candidate b/dev/release/release-candidate
index 2d999ca..aa7350a 100755
--- a/dev/release/release-candidate
+++ b/dev/release/release-candidate
@@ -216,7 +216,9 @@ pushd ${dist_dir}
# Create the checksums
echo "Creating checksums"
gpg --print-md MD5 ${dist_name}.tar.gz > ${dist_name}.tar.gz.md5
- shasum ${dist_name}.tar.gz > ${dist_name}.tar.gz.sha
+ sha1sum ${dist_name}.tar.gz > ${dist_name}.tar.gz.sha1
+ sha256sum ${dist_name}.tar.gz > ${dist_name}.tar.gz.sha256
+ sha512sum ${dist_name}.tar.gz > ${dist_name}.tar.gz.sha512
popd
parquet_svn_rc_url="${parquet_svn_dist_url}/apache-parquet-cpp-${rc_version}"