Skip to content

Commit

Permalink
Bumped version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Norman Clarke committed Mar 25, 2009
1 parent f0bfada commit 2f1fd74
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion 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.

Expand Down
2 changes: 1 addition & 1 deletion friendly_id.gemspec
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion lib/friendly_id/version.rb
Expand Up @@ -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

0 comments on commit 2f1fd74

Please sign in to comment.