diff --git a/Changelog.md b/Changelog.md index 7aeba8599..f9fef0ab7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,7 +3,13 @@ We would like to think our many [contributors](https://github.com/norman/friendly_id/graphs/contributors) for suggestions, ideas and improvements to FriendlyId. +## 5.3.0 (2019-09-25) + +* Record history when scope changes but slug does not ([#916](https://github.com/norman/friendly_id/pull/916)) +* Add support for Rails 6 ([#897](https://github.com/norman/friendly_id/pull/897)) + ## 5.2.5 (2018-12-30) + * Pass all possible parameters to ActiveRecord::RecordNotFound.new when raising the exception ([#890](https://github.com/norman/friendly_id/pull/890)) * Use composite index for queries by sluggable ([#882](https://github.com/norman/friendly_id/pull/882)) * Scoped: generate new slug if scope changed ([#878](https://github.com/norman/friendly_id/pull/878)) diff --git a/lib/friendly_id/version.rb b/lib/friendly_id/version.rb index c0df24c4d..c4a61be76 100644 --- a/lib/friendly_id/version.rb +++ b/lib/friendly_id/version.rb @@ -1,3 +1,3 @@ module FriendlyId - VERSION = '5.2.5'.freeze + VERSION = '5.3.0'.freeze end