Skip to content
Snippets Groups Projects
Commit 6bfb1bb5 authored by Alex Reisner's avatar Alex Reisner
Browse files

Prepare for release of gem version 1.1.0.

parent 81f2ea0d
No related branches found
Tags 1.1.5
No related merge requests found
......@@ -2,6 +2,18 @@
Per-release changes to Geocoder.
== 1.1.0 (2011 Dec 3)
* A block passed to geocoded_by is now always executed, even if the geocoding service returns no results. This means you need to make sure you have results before trying to assign data to your object.
* Fix issues with joins and row counts (issues #49, 86, and 108) by not using GROUP BY clause with ActiveRecord scopes.
* Fix incorrect object ID when join used (fixes issue #140).
* Fix calculation of bounding box which spans 180th meridian (thanks github.com/hwuethrich).
* Add within_bounding_box scope for ActiveRecord-based models (thanks github.com/gavinhughes and dbloete).
* Add option to raise Geocoder::OverQueryLimitError for Google geocoding service.
* Add support for Nominatim geocoding service (thanks github.com/wranglerdriver).
* Add support for API key to Geocoder.ca geocoding service (thanks github.com/ryanLonac).
* Add support for state to Yandex results (thanks github.com/tipugin).
== 1.0.5 (2011 Oct 26)
* Fix error with `rake assets:precompile` (thanks github.com/Sush).
......
module Geocoder
VERSION = "1.0.5"
VERSION = "1.1.0"
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment