Commit 9f4182516033f29f4973476ec4c9677545f28ece

Authored by Andrew Kane
1 parent 51453859

Version bump to 0.8.4

CHANGELOG.md
1   -## 0.8.4 [unreleased]
  1 +## 0.8.4
2 2  
3 3 - Added `boost_by_distance`
4 4 - More flexible highlight options
... ...
README.md
... ... @@ -569,13 +569,13 @@ To change the tag, use:
569 569 Band.search "cinema", fields: [:name], highlight: {tag: "<strong>"}
570 570 ```
571 571  
572   -To highlight and search different fields, use: [master]
  572 +To highlight and search different fields, use:
573 573  
574 574 ```ruby
575 575 Band.search "cinema", fields: [:name], highlight: {fields: [:description]}
576 576 ```
577 577  
578   -Additional options, including fragment size, can be specified for each field: [master]
  578 +Additional options, including fragment size, can be specified for each field:
579 579  
580 580 ```ruby
581 581 Band.search "cinema", fields: [:name], highlight: {fields: {name: {fragment_size: 200}}}
... ... @@ -616,7 +616,7 @@ Bounded by a box
616 616 City.search "san", where: {location: {top_left: [38, -123], bottom_right: [37, -122]}}
617 617 ```
618 618  
619   -### Boost By Distance [master]
  619 +### Boost By Distance
620 620  
621 621 Boost results by distance - closer results are boosted more
622 622  
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "0.8.3"
  2 + VERSION = "0.8.4"
3 3 end
... ...