Commit aff7c38559377ad0093961535c130adb4fa283e9

Authored by Andrew Kane
1 parent 7def99b6

Version bump to 1.1.2

CHANGELOG.md
1   -## 1.1.2 [unreleased]
  1 +## 1.1.2
2 2  
  3 +- Added bulk updates with `callbacks` method
  4 +- Added `bulk_delete` method
3 5 - Added `search_timeout` option
  6 +- Fixed bug with new location format for `boost_by_distance`
4 7  
5 8 ## 1.1.1
6 9  
... ...
README.md
... ... @@ -406,7 +406,7 @@ There are three strategies for keeping the index synced with your database.
406 406 end
407 407 ```
408 408  
409   -You can also do bulk updates. [master]
  409 +You can also do bulk updates.
410 410  
411 411 ```ruby
412 412 Searchkick.callbacks(:bulk) do
... ... @@ -414,7 +414,7 @@ Searchkick.callbacks(:bulk) do
414 414 end
415 415 ```
416 416  
417   -Or temporarily skip updates. [master]
  417 +Or temporarily skip updates.
418 418  
419 419 ```ruby
420 420 Searchkick.callbacks(false) do
... ... @@ -1151,7 +1151,7 @@ Change timeout
1151 1151 Searchkick.timeout = 15 # defaults to 10
1152 1152 ```
1153 1153  
1154   -Set a lower timeout for searches [master]
  1154 +Set a lower timeout for searches
1155 1155  
1156 1156 ```ruby
1157 1157 Searchkick.search_timeout = 3
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "1.1.1"
  2 + VERSION = "1.1.2"
3 3 end
... ...