From 0ade65e02c0be9eccc3c54e5f26a4589f4d46231 Mon Sep 17 00:00:00 2001 From: "Hongli Lai (Phusion)" Date: Mon, 11 Mar 2013 19:27:39 +0100 Subject: [PATCH] Bump version number to 1.0.1 so that we have an excuse to sign the gem. --- README.md | 4 ++++ digest-sha3.gemspec | 2 +- lib/digest/sha3/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a498be8..8717c0c 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ This Ruby extension implements the SHA-3 ([Keccak](http://keccak.noekeon.org/)) gem install digest-sha3 +Our gem is signed using PGP with the [Phusion Software Signing key](http://www.phusion.nl/about/gpg). That key in turn is signed by [the rubygems-openpgp Certificate Authority](http://www.rubygems-openpgp-ca.org/). + +You can verify the authenticity of the gem by following [The Complete Guide to Verifying Gems with rubygems-openpgp](http://www.rubygems-openpgp-ca.org/blog/the-complete-guide-to-verifying-gems-with-rubygems-openpgp.html). + ## Usage Keccak supports 5 hash lengths: 224-bit, 256-bit, 384-bit, 512-bit and variable length. Variable length is not supported by this Ruby extension. Unless the user specifies otherwise, this Ruby extension assumes 512-bit. diff --git a/digest-sha3.gemspec b/digest-sha3.gemspec index a9f7766..0d189c5 100644 --- a/digest-sha3.gemspec +++ b/digest-sha3.gemspec @@ -4,7 +4,7 @@ Gem::Specification.new do |s| s.name = "digest-sha3" s.version = Digest::SHA3::Version::STRING s.summary = "The SHA-3 (Keccak) hash" - s.email = "hongli@phusion.nl" + s.email = "software-signing@phusion.nl" s.homepage = "https://github.com/phusion/digest-sha3-ruby" s.description = "The SHA-3 (Keccak) hash." s.authors = ["Hongli Lai (Phusion)", "Keccak authors"] diff --git a/lib/digest/sha3/version.rb b/lib/digest/sha3/version.rb index a06d262..c97df78 100644 --- a/lib/digest/sha3/version.rb +++ b/lib/digest/sha3/version.rb @@ -1,7 +1,7 @@ module Digest class SHA3 module Version - STRING = "1.0.0" + STRING = "1.0.1" end end end \ No newline at end of file