Commit 060c77ac1568e362b5db9de2a282b0acf028050e

Authored by Andrew Kane
1 parent 04af5ba2

Version bump to 0.8.2

CHANGELOG.md
1   -## 0.8.2 [unreleased]
  1 +## 0.8.2
2 2  
3 3 - Added `async` to `callbacks` option
4 4 - Added `wordnet` option
... ...
README.md
... ... @@ -243,7 +243,7 @@ end
243 243  
244 244 Call `Product.reindex` after changing synonyms.
245 245  
246   -### WordNet [master]
  246 +### WordNet
247 247  
248 248 Prepopulate English synonyms with the [WordNet database](http://en.wikipedia.org/wiki/WordNet).
249 249  
... ... @@ -333,7 +333,7 @@ There are three strategies for keeping the index synced with your database.
333 333  
334 334 Anytime a record is inserted, updated, or deleted
335 335  
336   -2. Asynchronous [master]
  336 +2. Asynchronous
337 337  
338 338 Use background jobs for better performance
339 339  
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "0.8.1"
  2 + VERSION = "0.8.2"
3 3 end
... ...