Commit 19d6e9b95f27aa0cf489c6ad77e3216efde167ef

Authored by Andrew Kane
1 parent c7fbad00

Version bump to 1.3.2

1 -## 1.3.2 [unreleased] 1 +## 1.3.2
2 2
3 - Added `body_options` option 3 - Added `body_options` option
4 - Added `date_histogram` aggregation 4 - Added `date_histogram` aggregation
@@ -643,7 +643,7 @@ Minimum document count @@ -643,7 +643,7 @@ Minimum document count
643 Product.search "apples", aggs: {store_id: {min_doc_count: 2}} 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 ```ruby 648 ```ruby
649 Product.search "pear", aggs: {products_per_year: {date_histogram: {field: :created_at, interval: :year}}} 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,7 +1137,7 @@ Search across multiple indices with:
1137 Searchkick.search "milk", index_name: [Product, Category] 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 ```ruby 1142 ```ruby
1143 indices_boost: {Category => 2, Product => 1} 1143 indices_boost: {Category => 2, Product => 1}
lib/searchkick/version.rb
1 module Searchkick 1 module Searchkick
2 - VERSION = "1.3.1" 2 + VERSION = "1.3.2"
3 end 3 end