Commit a32b9f23a859862b38a123150adad9ffc06089e5

Authored by Andrew Kane
1 parent 6ffc25e1

Version bump

CHANGELOG.md
1   -## 0.2.3 [in progess]
  1 +## 0.2.3
2 2  
3 3 - Setup Travis
4 4 - Clean old indices before reindex
5 5 - Search for `*` returns all results
  6 +- Fixed pagination
  7 +- Added `similar` method
6 8  
7 9 ## 0.2.2
8 10  
... ...
README.md
... ... @@ -284,9 +284,7 @@ Advanced
284 284 Product.search "2% Milk", facets: {store_id: {where: {in_stock: true}}}
285 285 ```
286 286  
287   -### Similar Items [master]
288   -
289   -**Note:** Subject to change before the next gem release
  287 +### Similar Items
290 288  
291 289 Find similar items.
292 290  
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "0.2.2"
  2 + VERSION = "0.2.3"
3 3 end
... ...