Commit 0ef6c9b9d36e64cf7fe9b7f4b3a2cf52505fdd79

Authored by Andrew Kane
1 parent 1bb608ca

Version bump to 1.3.5

CHANGELOG.md
1   -## 1.3.5 [unreleased]
  1 +## 1.3.5
2 2  
3 3 - Added support for Elasticsearch 5.0 beta
4 4 - Added `request_params` option
... ...
README.md
... ... @@ -1328,7 +1328,7 @@ products = Product.search("carrots", execute: false)
1328 1328 products.each { ... } # search not executed until here
1329 1329 ```
1330 1330  
1331   -Add [request parameters](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-uri-request.html), like `search_type` and `query_cache` [master]
  1331 +Add [request parameters](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-uri-request.html), like `search_type` and `query_cache`
1332 1332  
1333 1333 ```ruby
1334 1334 Product.search("carrots", request_params: {search_type: "dfs_query_then_fetch"})
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "1.3.4"
  2 + VERSION = "1.3.5"
3 3 end
... ...