aboutsummaryrefslogtreecommitdiff
path: root/RELEASING
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2016-03-17 12:49:09 -0400
committerPaul Ganssle <paul@ganssle.io>2016-03-17 12:49:09 -0400
commit66f29ba47bc268923b73f013d9d0586c8f12f7ca (patch)
treef1a1f085262fd217eb58909b9f169f2a5b79522f /RELEASING
parent6c3b7813ce2407967e1a87580f0b2bcb0905ab11 (diff)
downloaddateutil-66f29ba47bc268923b73f013d9d0586c8f12f7ca.tar.gz
Prepare 2.5.1 release.
Diffstat (limited to 'RELEASING')
-rw-r--r--RELEASING3
1 files changed, 3 insertions, 0 deletions
diff --git a/RELEASING b/RELEASING
index d0e18de..357139c 100644
--- a/RELEASING
+++ b/RELEASING
@@ -90,3 +90,6 @@ that they are valid signatures:
gpg --verify <fname>.asc <fname>
+To do this in bulk, you can use the command:
+
+ for f in $(find ./dist -type f | grep -v '.asc$'); do gpg --verify $f.asc $f; done