From 90a9a995d655ffc780a3cd2cb3cf7c8fa5c9ac64 Mon Sep 17 00:00:00 2001 From: Derek Dohler Date: Tue, 20 Jul 2021 15:15:58 -0400 Subject: [PATCH 1/2] Bump version number I forgot about this initially, so this is a follow-up commit to take care of it so that the release works correctly. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2143afb..f665194 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def read(fname): setup( name="python-omgeo", - version="6.0.4", + version="6.1.0", description="Geocoding Library using ESRI, Google, Bing Maps, US Census, OpenStreetMap, Pelias, and MapQuest geocoders", author="Azavea, Inc.", author_email="info@azavea.com", From 10865a5dff6359a64ec0a8471130ff43faa137a5 Mon Sep 17 00:00:00 2001 From: Terence Tuhinanshu Date: Mon, 22 Jan 2024 16:57:44 -0500 Subject: [PATCH 2/2] Update CHANGES.rst for 6.2.0 --- CHANGES.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 71f67db..9b01fe6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -228,3 +228,10 @@ v6.1.0, 2021-07-20 * Populate match_region using RegionAbbr rather than Region from EsriWGS. For example, when using the EsriWGS geocoder, expect 'PA' rather than 'Pennsylvania' in match_region. + +v6.2.0, 2024-01-22 +------------------ + * Fix /findAddressCandidates calls for EsriWGS when using magicKey. They + previously would provide an internal Loc_name field in the response which + is no longer supplied, which broke the API. Making that field optional in + our code fixes this.