Bump version number to 1.0.1 so that we have an excuse to sign the gem.

This commit is contained in:
Hongli Lai (Phusion) 2013-03-11 19:27:39 +01:00
parent d47b1d3f23
commit 0ade65e02c
3 changed files with 6 additions and 2 deletions

View File

@ -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.

View File

@ -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"]

View File

@ -1,7 +1,7 @@
module Digest
class SHA3
module Version
STRING = "1.0.0"
STRING = "1.0.1"
end
end
end