diff --git a/Changelog.md b/Changelog.md index aa77837f9..f784c8d3c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,8 +6,9 @@ suggestions, ideas and improvements to FriendlyId. * Table of Contents {:toc} -## 2.3.2 (NOT RELEASED YET) +## 2.3.2 (2010-02-14) +* Fixed finding by old slug when using cached slugs. * Sequence separator parsing now correctly handles occurrences of the sequence separator string inside the friendly_id text (Johan Kok). * Fixed missing quotes on table names in a few places (Brian Collins). diff --git a/lib/friendly_id/version.rb b/lib/friendly_id/version.rb index e39696a7a..b48c1eb88 100644 --- a/lib/friendly_id/version.rb +++ b/lib/friendly_id/version.rb @@ -2,7 +2,7 @@ module FriendlyId module Version MAJOR = 2 MINOR = 3 - TINY = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end end