Skip to content

Commit

Permalink
Bump to v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
glebm committed Aug 17, 2019
1 parent 24cc1c5 commit ae6d0de
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/db_text_search/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module DbTextSearch
# Gem version
VERSION = '0.3.0'
VERSION = '0.3.1'
end

0 comments on commit ae6d0de

Please sign in to comment.