diff --git a/CHANGELOG.md b/CHANGELOG.md index 01bed21..f8ae10c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,18 @@ # Change Log +## Version 1.6.2 - 2015-01-14 + +* Fix a regression + ([#494](https://github.com/activerecord-hackery/ransack/issues/494)) + where passing an array of routes of `search_form_for` no longer worked, + and add a failing/passing test that would have caught the issue. + + *Daniel Rikowski*, *Jon Atack* + + ## Version 1.6.1 - 2015-01-14 -* Fix a regression with using `in` predicates caused by PR [#488](https://github.com/activerecord-hackery/ransack/pull/488)). Add a test. +* Fix a regression with using `in` predicates caused by PR [#488](https://github.com/activerecord-hackery/ransack/pull/488)) and add a test. * README improvements to clarify `sort_link` syntax with associations and Ransack#search vs #ransack. diff --git a/README.md b/README.md index a3a5bc1..c47cbf4 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,8 @@ instead. If you're viewing this at [github.com/activerecord-hackery/ransack](https://github.com/activerecord-hackery/ransack), you're reading the documentation for the master branch with the latest features. -[View documentation for the last release (1.6.0).](https://github.com/activerecord-hackery/ransack/tree/v1.6.1) +[View documentation for the last release (1.6.2).] +(https://github.com/activerecord-hackery/ransack/tree/v1.6.2) ## Getting started diff --git a/lib/ransack/version.rb b/lib/ransack/version.rb index 199746b..b7e5663 100644 --- a/lib/ransack/version.rb +++ b/lib/ransack/version.rb @@ -1,3 +1,3 @@ module Ransack - VERSION = "1.6.1" + VERSION = "1.6.2" end