diff --git a/History.txt b/History.txt index 57f8b4346..dde577455 100644 --- a/History.txt +++ b/History.txt @@ -1,6 +1,14 @@ +== 2.1.1 2009-03-25 + +* 2 minor enhancements: + * Fixed bug with find_some; if a record has old slugs, find_some will no longer return +multiple copies of that record when finding by numerical ID. (Steve Luscher) + * Fixed bug with find_some: you can now find_some with an array of numerical IDs without +an error being thrown. (Steve Luscher) + == 2.1.0 2009-03-25 -2 major enhancements: +* 2 major enhancements: * Ruby 1.9 compatibility. * Removed dependency on ancient Unicode gem. diff --git a/friendly_id.gemspec b/friendly_id.gemspec index ef3963df4..3ad8ef2f0 100644 --- a/friendly_id.gemspec +++ b/friendly_id.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = %q{friendly_id} - s.version = "2.1.0" + s.version = "2.1.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Norman Clarke", "Adrian Mugnolo", "Emilio Tagua"] s.date = %q{2009-03-25} diff --git a/lib/friendly_id/version.rb b/lib/friendly_id/version.rb index 014a5e150..c8e9ac68b 100644 --- a/lib/friendly_id/version.rb +++ b/lib/friendly_id/version.rb @@ -2,7 +2,7 @@ module FriendlyId #:nodoc: module Version #:nodoc: MAJOR = 2 MINOR = 1 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end end \ No newline at end of file