Commit b5585258eda855af300876d97d8e5f9b4f9c0713

Authored by Andrew Kane
1 parent 668b7948

Version bump to 1.3.0

CHANGELOG.md
1   -## 1.3.0 [unreleased]
  1 +## 1.3.0
2 2  
3 3 - Added support for Elasticsearch 5.0 alpha
4 4 - Added support for phrase matches
... ...
README.md
... ... @@ -245,7 +245,7 @@ Available options are:
245 245 User.search params[:q], fields: [{email: :exact}, :name]
246 246 ```
247 247  
248   -### Phrase Matches [master]
  248 +### Phrase Matches
249 249  
250 250 ```ruby
251 251 User.search "fresh honey", match: :phrase
... ... @@ -637,7 +637,7 @@ price_ranges = [{to: 20}, {from: 20, to: 50}, {from: 50}]
637 637 Product.search "*", aggs: {price: {ranges: price_ranges}}
638 638 ```
639 639  
640   -Minimum document count [master]
  640 +Minimum document count
641 641  
642 642 ```ruby
643 643 Product.search "apples", aggs: {store_id: {min_doc_count: 2}}
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "1.2.1"
  2 + VERSION = "1.3.0"
3 3 end
... ...