From eab414a2ab50fd60087dccd6fda046b4ddcba0f6 Mon Sep 17 00:00:00 2001 From: Philip Arndt Date: Wed, 25 Sep 2019 10:33:25 +1200 Subject: [PATCH] Document version 5.3.0 Resolves #917 --- Changelog.md | 6 ++++++ lib/friendly_id/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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