Commit 96984e06cd1bb934c79b8ddbfe32ceda47215f49

Authored by Andrew Kane
1 parent 1ed25176

Version bump to 4.4.1 [skip ci]

1 -## 4.4.1 (unreleased) 1 +## 4.4.1 (2020-06-24)
2 2
3 - Added `stem_exclusion` and `stemmer_override` options 3 - Added `stem_exclusion` and `stemmer_override` options
4 - Added `with_score` method to search results 4 - Added `with_score` method to search results
@@ -330,7 +330,7 @@ class Image < ApplicationRecord @@ -330,7 +330,7 @@ class Image < ApplicationRecord
330 end 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 ```ruby 335 ```ruby
336 class Image < ApplicationRecord 336 class Image < ApplicationRecord
@@ -338,7 +338,7 @@ class Image &lt; ApplicationRecord @@ -338,7 +338,7 @@ class Image &lt; ApplicationRecord
338 end 338 end
339 ``` 339 ```
340 340
341 -Or change how words are stemmed: [unreleased] 341 +Or change how words are stemmed:
342 342
343 ```ruby 343 ```ruby
344 class Image < ApplicationRecord 344 class Image < ApplicationRecord
lib/searchkick/version.rb
1 module Searchkick 1 module Searchkick
2 - VERSION = "4.4.0" 2 + VERSION = "4.4.1"
3 end 3 end