diff --git a/Changelog.md b/Changelog.md index aa08a4270..7a585b18d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,10 @@ suggestions, ideas and improvements to FriendlyId. * Table of Contents {:toc} +## 3.0.3 (2010-04-26) + +* Fixed scope update when models use polymorphic relations. + ## 3.0.2 (2010-04-09) * Fixed finding non-slugged models by an array of ids. diff --git a/Contributors.md b/Contributors.md index 1543b7e89..a0f89c064 100644 --- a/Contributors.md +++ b/Contributors.md @@ -24,13 +24,15 @@ community, in particular from the following people: * Josh Nichols * Juan Schwindt * Kamal Fariz Mahyuddin +* Laurence A. Lee * Louis T. * Mikhail Shirkov -* Nathan Phelps * Nash Kabbara +* Nathan Phelps * Ramon Soares * Rdavila * Rob Ingram +* Ryan Wood * Sean Abrahams * Steve Luscher * Steven Noble diff --git a/lib/friendly_id/version.rb b/lib/friendly_id/version.rb index b3fdf9d63..84f189745 100644 --- a/lib/friendly_id/version.rb +++ b/lib/friendly_id/version.rb @@ -2,7 +2,7 @@ module FriendlyId module Version MAJOR = 3 MINOR = 0 - TINY = 2 + TINY = 3 BUILD = nil STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.') end