Commit 0f12047c45589bc32e3755cad41332cd684f3d9e

Authored by Andrew Kane
1 parent 0668f779

Version bump

CHANGELOG.md
1   -## 0.2.6 [unreleased]
  1 +## 0.2.6
2 2  
3 3 - Added option to disable misspellings
4 4  
... ...
README.md
... ... @@ -150,7 +150,6 @@ Call `Product.reindex` after changing synonyms.
150 150 By default, Searchkick handles misspelled queries by returning results with an [edit distance](http://en.wikipedia.org/wiki/Levenshtein_distance) of one. To turn off this feature, use:
151 151  
152 152 ```ruby
153   -# master branch only
154 153 Product.search "zuchini", misspellings: false
155 154 ```
156 155  
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "0.2.5"
  2 + VERSION = "0.2.6"
3 3 end
... ...