diff --git a/History.txt b/History.txt index 2e50a959..9025486d 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,9 @@ +=== 1.3.0 / 2009-04-11 +* Added capability to define multiple API keys for different domains that may be pointing to the same application (thanks Glenn Powell) +* Added numeric accuracy accessor for Yahoo and Google geocoders (thanks Andrew Fecheyr Lippens) +* Implement #hash and #eql? on LatLng to allow for using it as a hash key (thanks Luke Melia and Ross Kaffenberger) +* + === 1.2.6 / 2009-03-19 * misc minor fixes diff --git a/geokit.gemspec b/geokit.gemspec index 073c0049..c190dbba 100644 --- a/geokit.gemspec +++ b/geokit.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = %q{geokit} - s.version = "1.2.6" + s.version = "1.3.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Andre Lewis and Bill Eisenhauer"] - s.date = %q{2009-02-09} + s.date = %q{2009-4-11} s.description = %q{Geokit Gem} s.email = ["andre@earthcode.com / bill_eisenhauer@yahoo.com"] s.extra_rdoc_files = ["Manifest.txt", "README.markdown"] diff --git a/lib/geokit.rb b/lib/geokit.rb index b2925c75..3e8e6b87 100644 --- a/lib/geokit.rb +++ b/lib/geokit.rb @@ -1,5 +1,5 @@ module Geokit - VERSION = '1.2.6' + VERSION = '1.3.0' # These defaults are used in Geokit::Mappable.distance_to and in acts_as_mappable @@default_units = :miles @@default_formula = :sphere