Commit 96984e06cd1bb934c79b8ddbfe32ceda47215f49

Authored by Andrew Kane
1 parent 1ed25176

Version bump to 4.4.1 [skip ci]

CHANGELOG.md
1   -## 4.4.1 (unreleased)
  1 +## 4.4.1 (2020-06-24)
2 2  
3 3 - Added `stem_exclusion` and `stemmer_override` options
4 4 - Added `with_score` method to search results
... ...
README.md
... ... @@ -330,7 +330,7 @@ class Image < ApplicationRecord
330 330 end
331 331 ```
332 332  
333   -Specify certain words to be excluded from stemming: [unreleased]
  333 +Exclude certain words from stemming with:
334 334  
335 335 ```ruby
336 336 class Image < ApplicationRecord
... ... @@ -338,7 +338,7 @@ class Image &lt; ApplicationRecord
338 338 end
339 339 ```
340 340  
341   -Or change how words are stemmed: [unreleased]
  341 +Or change how words are stemmed:
342 342  
343 343 ```ruby
344 344 class Image < ApplicationRecord
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "4.4.0"
  2 + VERSION = "4.4.1"
3 3 end
... ...