diff --git a/CHANGELOG.md b/CHANGELOG.md index e39eb710d..748108c87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ Changelog Major changes to Geocoder for each release. Please see the Git log for complete list of changes. +1.6.0 (2020 Jan 6) +------------------- +* Drop support for Rails 3.x. +* Add support for :osmnames lookup (thanks github.com/zacviandier). +* Add support for :ipgeolocation IP lookup (thanks github.com/ahsannawaz111). + 1.5.2 (2019 Oct 3) ------------------- * Add support for :ipregistry lookup (thanks github.com/ipregistry). diff --git a/LICENSE b/LICENSE index 767580ccd..21dd3a0a2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009-11 Alex Reisner +Copyright (c) 2009-2020 Alex Reisner Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/README.md b/README.md index 87c34ed5b..f91258ed1 100644 --- a/README.md +++ b/README.md @@ -703,4 +703,4 @@ For all contributions, please respect the following guidelines: * If your pull request is merged, please do not ask for an immediate release of the gem. There are many factors contributing to when releases occur (remember that they affect thousands of apps with Geocoder in their Gemfiles). If necessary, please install from the Github source until the next official release. -Copyright :copyright: 2009-19 Alex Reisner, released under the MIT license. +Copyright :copyright: 2009-2020 Alex Reisner, released under the MIT license. diff --git a/README_API_GUIDE.md b/README_API_GUIDE.md index d58c4ad11..a21c0aea8 100644 --- a/README_API_GUIDE.md +++ b/README_API_GUIDE.md @@ -579,4 +579,4 @@ You must add either the *[hive_geoip2](https://rubygems.org/gems/hive_geoip2)* g ) -Copyright (c) 2009-18 Alex Reisner, released under the MIT license. +Copyright (c) 2009-2020 Alex Reisner, released under the MIT license. diff --git a/lib/geocoder/version.rb b/lib/geocoder/version.rb index f5b2313c1..9f29246ca 100644 --- a/lib/geocoder/version.rb +++ b/lib/geocoder/version.rb @@ -1,3 +1,3 @@ module Geocoder - VERSION = "1.5.2" + VERSION = "1.6.0" end