Commit 2be284efae6c7d6019419a1800e1cf9bcc8e0f70

Authored by Andrew Kane
1 parent e58e01d9

Version bump to 0.7.9

CHANGELOG.md
1   -## 0.7.9 [unreleased]
  1 +## 0.7.9
2 2  
3 3 - Added `tokens` method
4 4 - Added `json` option
... ...
README.md
... ... @@ -212,7 +212,7 @@ To boost fields, use:
212 212 fields: [{"name^2" => :word_start}] # better interface on the way
213 213 ```
214 214  
215   -### Exact Matches [master]
  215 +### Exact Matches
216 216  
217 217 ```ruby
218 218 User.search "hi@searchkick.org", fields: [{email: :exact}]
... ... @@ -571,7 +571,7 @@ Animal.search "*", type: [Dog, Cat] # just cats and dogs
571 571 Dog.search "airbudd", suggest: true # suggestions for all animals
572 572 ```
573 573  
574   -## Debugging Queries [master]
  574 +## Debugging Queries
575 575  
576 576 See how Elasticsearch tokenizes your queries with:
577 577  
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "0.7.8"
  2 + VERSION = "0.7.9"
3 3 end
... ...