From 045e8c2e9bf0cc52d07eda218c5fbd4b5bcdf1df Mon Sep 17 00:00:00 2001 From: nashby Date: Fri, 22 Apr 2011 20:49:48 +0300 Subject: [PATCH] Regenerate gemspec for version 0.2.0 --- README.rdoc | 7 +++++++ cityhash.gemspec | 2 +- lib/cityhash/version.rb | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.rdoc b/README.rdoc index 6c35a8c..b4649dc 100644 --- a/README.rdoc +++ b/README.rdoc @@ -24,6 +24,13 @@ Ruby wrapper for google's cityhash. * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally. * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it. +Authors +======= +### [Contributors](http://github.com/nashby/cityhash/contributors) + - [Johannes HolzfuƟ](http://github.com/DataWraith) + +[Vasiliy Ermolovich](http://github.com/nashby/)
+ == Copyright Copyright (c) 2011 nashby. See LICENSE.txt for diff --git a/cityhash.gemspec b/cityhash.gemspec index 73477ec..152c9cc 100644 --- a/cityhash.gemspec +++ b/cityhash.gemspec @@ -5,7 +5,7 @@ Gem::Specification.new do |s| s.name = %q{cityhash} - s.version = "0.1.1" + s.version = "0.2.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["nashby"] diff --git a/lib/cityhash/version.rb b/lib/cityhash/version.rb index 316d5bc..f0a9252 100644 --- a/lib/cityhash/version.rb +++ b/lib/cityhash/version.rb @@ -2,8 +2,8 @@ module CityHash module Version MAJOR = 0 - MINOR = 1 - PATCH = 1 + MINOR = 2 + PATCH = 0 BUILD = nil STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')