From ae6d0de053fdd026f95687c6364d731657c58911 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sat, 17 Aug 2019 10:17:47 +0100 Subject: [PATCH] Bump to v0.3.1 --- CHANGES.md | 13 +++++++++---- README.md | 2 +- lib/db_text_search/version.rb | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index fdf54c9..fc29eb1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,11 +1,16 @@ -## v0.2.2 +## v0.3.1 -* Raises a more helpful error if the column is not found when calling - `DbTextSearch::CaseInsensitive`. +* Rails 6 support. + [ff16189f](https://github.com/thredded/db_text_search/commit/ff16189fdc7b1bf7b66e4bedc27483aaf3e75414) ## v0.3.0 -* * **Feature** Case insensitive sorting via the new `CaseInsensitive#column_for_order(asc_or_desc)` method. Use it like `SomeModel.some_scope.order(CaseInsensitive.new(SomeModel, :some_field).column_for_order(:asc))` +* **Feature** Case insensitive sorting via the new `CaseInsensitive#column_for_order(asc_or_desc)` method. Use it like `SomeModel.some_scope.order(CaseInsensitive.new(SomeModel, :some_field).column_for_order(:asc))` + +## v0.2.2 + +* Raises a more helpful error if the column is not found when calling + `DbTextSearch::CaseInsensitive`. ## v0.2.1 diff --git a/README.md b/README.md index f769146..ae12162 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ DbTextSearch provides a unified interface on top of ActiveRecord for SQLite, MyS Add this line to your application's Gemfile: ```ruby -gem 'db_text_search', '~> 0.3.0' +gem 'db_text_search', '~> 0.3.1' ``` ## Usage diff --git a/lib/db_text_search/version.rb b/lib/db_text_search/version.rb index e9b3e64..9eb70e7 100644 --- a/lib/db_text_search/version.rb +++ b/lib/db_text_search/version.rb @@ -2,5 +2,5 @@ module DbTextSearch # Gem version - VERSION = '0.3.0' + VERSION = '0.3.1' end