Skip to content

Commit

Permalink
Regenerate gemspec for version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nashby committed Apr 22, 2011
1 parent a07661e commit a7e1caf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Ruby wrapper for google's cityhash.
CityHash.hash64("test") # => 17703940110308125106
CityHash.hash64("test", 12345) # => 14900027982776226655
CityHash.hash64("test", 12345, 54321) # => 11136353178704814373
CityHash.hash128("test") # => 130554790001792308794529643941127319555
CityHash.hash128("test", [123,123]) # => 183946415266487905135364192266033899899

### Contributing to cityhash

Expand Down
6 changes: 4 additions & 2 deletions cityhash.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{cityhash}
s.version = "0.2.1"
s.version = "0.3.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["nashby"]
s.date = %q{2011-04-22}
s.date = %q{2011-04-23}
s.description = %q{ffi wrapper for google's cityhash}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
Expand All @@ -29,6 +29,8 @@ Gem::Specification.new do |s|
"lib/cityhash/ext/src/Makefile",
"lib/cityhash/ext/src/city.cc",
"lib/cityhash/ext/src/city.h",
"lib/cityhash/ext/src/city_ruby_bridge.cpp",
"lib/cityhash/ext/src/city_ruby_bridge.h",
"lib/cityhash/version.rb",
"test/helper.rb",
"test/test_cityhash.rb"
Expand Down
4 changes: 2 additions & 2 deletions lib/cityhash/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module CityHash

module Version
MAJOR = 0
MINOR = 2
PATCH = 1
MINOR = 3
PATCH = 0
BUILD = nil

STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
Expand Down

0 comments on commit a7e1caf

Please sign in to comment.