Commit a662e76602f843fee112b9881503ec014073bc15

Authored by Andrew Kane
1 parent e8a3f2c5

Updated changelog

Showing 2 changed files with 5 additions and 1 deletions   Show diff stats
CHANGELOG.md
  1 +## 1.3.7 [unreleased]
  2 +
  3 +- Added `geo_polygon` filter
  4 +
1 5 ## 1.3.6
2 6  
3 7 - Fixed `Job adapter not found` error
... ...
README.md
... ... @@ -852,7 +852,7 @@ Bounded by a box
852 852 City.search "san", where: {location: {top_left: {lat: 38, lon: -123}, bottom_right: {lat: 37, lon: -122}}}
853 853 ```
854 854  
855   -Bounded by a polygon
  855 +Bounded by a polygon [master]
856 856  
857 857 ```ruby
858 858 City.search "san", where: {location: {geo_polygon: {points: [{lat: 38, lon: -123}, {lat: 39, lon: -123}, {lat: 37, lon: 122}]}}}
... ...