CHANGELOG.rdoc in geocoder-0.9.8 vs CHANGELOG.rdoc in geocoder-0.9.9
- old
+ new
@@ -1,9 +1,24 @@
= Changelog
Per-release changes to Geocoder.
+== 0.9.9 (2011 Mar 9)
+
+* Add support for IP address geocoding via FreeGeoIp.net.
+* Add support for Yahoo PlaceFinder geocoding API.
+* Add support for custom geocoder data handling by passing a block to geocoded_by or reverse_geocoded_by.
+* 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>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.
* Add ability to configure Google connection timeout.
@@ -11,17 +26,17 @@
* Refactor: insert Geocoder into ActiveRecord via Railtie.
== 0.9.7 (2011 Feb 1)
* Add reverse geocoding (+reverse_geocoded_by+).
-* Prevent exception (uninitialized constant Geocoder::Net) when net/http not already required (sleepycat).
+* Prevent exception (uninitialized constant Geocoder::Net) when net/http not already required (github.com/sleepycat).
* Refactor: split monolithic Geocoder module into several smaller ones.
== 0.9.6 (2011 Jan 19)
* Fix incompatibility with will_paginate gem.
-* Include table names in GROUP BY clause of nearby scope to avoid ambiguity in joins (matchu).
+* Include table names in GROUP BY clause of nearby scope to avoid ambiguity in joins (github.com/matchu).
== 0.9.5 (2010 Oct 15)
* Fix broken PostgreSQL compatibility (now 100% compatible).
* Switch from Google's XML to JSON geocoding API.
@@ -38,18 +53,18 @@
* Deprecate 'options' argument to 'nearbys' method.
* Allow inclusion of 'nearbys' in Arel method chains.
== 0.9.2 (2010 Jun 3)
-* Fix LIMIT clause bug in PostgreSQL (reported by kenzie).
+* Fix LIMIT clause bug in PostgreSQL (reported by github.com/kenzie).
== 0.9.1 (2010 May 4)
* Use scope instead of named_scope in Rails 3.
== 0.9.0 (2010 Apr 2)
-* Fix bug in PostgreSQL support (caused "PGError: ERROR: column "distance" does not exist"), reported by developish.
+* Fix bug in PostgreSQL support (caused "PGError: ERROR: column "distance" does not exist"), reported by github.com/developish.
== 0.8.9 (2010 Feb 11)
* Add Rails 3 compatibility.
* Avoid querying Google when query would be an empty string.