Commit 1d228c3976eab62bdaa524547f9fc7c43bbdb2e7

Authored by Andrew
1 parent e92f68e1

Version bump to 3.1.1 [skip ci]

CHANGELOG.md
1   -## 3.1.1 [unreleased]
  1 +## 3.1.1
2 2  
3 3 - Added per-field misspellings
4   -- Made `exclude` option work with match all
5 4 - Added `case_sensitive` option
6 5 - Added `stem` option
7 6 - Added `total_entries` option
  7 +- Fixed `exclude` option with match all
8 8 - Fixed `with_highlights` method
9 9  
10 10 ## 3.1.0
... ...
README.md
... ... @@ -412,7 +412,7 @@ Turn off misspellings with:
412 412 Product.search "zuchini", misspellings: false # no zucchini
413 413 ```
414 414  
415   -Specify which fields can include misspellings with: [master]
  415 +Specify which fields can include misspellings with:
416 416  
417 417 ```ruby
418 418 Product.search "zucini", fields: [:name, :color], misspellings: {fields: [:name]}
... ... @@ -1684,7 +1684,7 @@ class Product < ApplicationRecord
1684 1684 end
1685 1685 ```
1686 1686  
1687   -Turn off stemming [master]
  1687 +Turn off stemming
1688 1688  
1689 1689 ```ruby
1690 1690 class Product < ApplicationRecord
... ... @@ -1708,7 +1708,7 @@ class Product &lt; ApplicationRecord
1708 1708 end
1709 1709 ```
1710 1710  
1711   -Make search case-sensitive [master]
  1711 +Make search case-sensitive
1712 1712  
1713 1713 ```ruby
1714 1714 class Product < ApplicationRecord
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "3.1.0"
  2 + VERSION = "3.1.1"
3 3 end
... ...