Fix version

This commit is contained in:
Alex Kotov 2019-06-08 17:02:01 +05:00
parent 2c1ba8012c
commit afb3ed551e
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
2 changed files with 2 additions and 4 deletions

View file

@ -7,7 +7,7 @@ require 'digest/keccak/version'
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = 'digest-keccak' spec.name = 'digest-keccak'
spec.version = Digest::Keccak::Version::STRING spec.version = Digest::Keccak::VERSION
spec.license = 'MIT' spec.license = 'MIT'
spec.homepage = 'https://github.com/kotovalexarian/digest-keccak.rb' spec.homepage = 'https://github.com/kotovalexarian/digest-keccak.rb'
spec.summary = 'The Keccak cryptographic hash function.' spec.summary = 'The Keccak cryptographic hash function.'

View file

@ -2,8 +2,6 @@
module Digest module Digest
class Keccak class Keccak
module Version VERSION = '0.0.1'
STRING = "1.1.0"
end
end end
end end