CHANGELOG.rdoc in geocoder-0.9.13 vs CHANGELOG.rdoc in geocoder-1.0.0
- old
+ new
@@ -1,9 +1,18 @@
= Changelog
Per-release changes to Geocoder.
+== 1.0.0 (2011 May 9)
+
+* Add command line interface.
+* Add support for local proxy (thanks github.com/Olivier).
+* Add support for Yandex.ru geocoding service.
+* Add support for Bing geocoding service (thanks github.com/astevens).
+* Fix single table inheritance bug (reported by github.com/enrico).
+* Fix bug when Google result supplies no city (thanks github.com/jkeen).
+
== 0.9.13 (2011 Apr 11)
* Fix "can't find special index: 2d" error when using Mongoid with Ruby 1.8.
== 0.9.12 (2011 Apr 6)
@@ -21,13 +30,13 @@
* Add support for result caching.
* Add support for Geocoder.ca geocoding service.
* Add +bearing+ attribute to objects returned by geo-aware queries (thanks github.com/matellis).
* Add config setting: language.
-* Add config settings: use_https, google_api_key (thanks github.com/svesely).
-* DEPRECATION: Geocoder.search now returns an array instead of a single result.
-* DEPRECATION: obj.nearbys second argument is now an options hash (instead of units). Please change <tt>obj.nearbys(20, :km)</tt> to: <tt>obj.nearbys(20, :units => :km)</tt>.
+* Add config settings: +use_https+, +google_api_key+ (thanks github.com/svesely).
+* DEPRECATION: <tt>Geocoder.search</tt> now returns an array instead of a single result.
+* DEPRECATION: <tt>obj.nearbys</tt> second argument is now an options hash (instead of units). Please change <tt>obj.nearbys(20, :km)</tt> to: <tt>obj.nearbys(20, :units => :km)</tt>.
== 0.9.10 (2011 Mar 9)
* Fix broken scopes (github.com/mikepinde).
* Fix broken Ruby 1.9 and JRuby compatibility (don't require json gem).
@@ -40,19 +49,19 @@
* Add <tt>Rack::Request#location</tt> method for geocoding user's IP address.
* Change gem name to geocoder (no more rails-geocoder).
* Gem now works outside of Rails.
* DEPRECATION: +fetch_coordinates+ no longer takes an argument.
* DEPRECATION: +fetch_address+ no longer takes an argument.
-* DEPRECATION: Geocoder.search now returns a single result instead of an array.
+* DEPRECATION: <tt>Geocoder.search</tt> now returns a single result instead of an array.
* DEPRECATION: <tt>fetch_coordinates!</tt> has been superceded by +geocode+ (then save your object manually).
* DEPRECATION: <tt>fetch_address!</tt> has been superceded by +reverse_geocode+ (then save your object manually).
* Fix: don't die when trying to get coordinates with a nil address (github.com/zmack).
== 0.9.8 (2011 Feb 8)
-* Include geocode:all Rake task in gem (was missing!).
-* Add Geocoder.search for access to Google's full response.
+* Include <tt>geocode:all</tt> Rake task in gem (was missing!).
+* Add <tt>Geocoder.search</tt> for access to Google's full response.
* Add ability to configure Google connection timeout.
* Emit warnings on Google connection problems and errors.
* Refactor: insert Geocoder into ActiveRecord via Railtie.
== 0.9.7 (2011 Feb 1)
@@ -131,10 +140,10 @@
* Allow a model's geocoder search string method to be something other than an ActiveRecord attribute.
* Clean up documentation.
== 0.8.1 (2009 Oct 8)
-* Extract XML-fetching code from Geocoder.search and place in Geocoder._fetch_xml (for ease of mocking).
+* Extract XML-fetching code from <tt>Geocoder.search</tt> and place in Geocoder._fetch_xml (for ease of mocking).
* Add tests for coordinate-fetching instance methods.
== 0.8.0 (2009 Oct 1)
First release.