Commit 19d6e9b95f27aa0cf489c6ad77e3216efde167ef

Authored by Andrew Kane
1 parent c7fbad00

Version bump to 1.3.2

CHANGELOG.md
1   -## 1.3.2 [unreleased]
  1 +## 1.3.2
2 2  
3 3 - Added `body_options` option
4 4 - Added `date_histogram` aggregation
... ...
README.md
... ... @@ -643,7 +643,7 @@ Minimum document count
643 643 Product.search "apples", aggs: {store_id: {min_doc_count: 2}}
644 644 ```
645 645  
646   -Date histogram [master]
  646 +Date histogram
647 647  
648 648 ```ruby
649 649 Product.search "pear", aggs: {products_per_year: {date_histogram: {field: :created_at, interval: :year}}}
... ... @@ -1137,7 +1137,7 @@ Search across multiple indices with:
1137 1137 Searchkick.search "milk", index_name: [Product, Category]
1138 1138 ```
1139 1139  
1140   -Boost specific indices with: [master]
  1140 +Boost specific indices with:
1141 1141  
1142 1142 ```ruby
1143 1143 indices_boost: {Category => 2, Product => 1}
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "1.3.1"
  2 + VERSION = "1.3.2"
3 3 end
... ...