File tree Expand file tree Collapse file tree 4 files changed +20
-9
lines changed
Expand file tree Collapse file tree 4 files changed +20
-9
lines changed Original file line number Diff line number Diff line change 33 History
44-------
55
6+ 2.0.0 (2025-06-18)
7+ +++++++++++++++++++
8+
9+ * Bumped default API version to 1.9
10+ If you are configuring clients with ``auto_load_api_version ``
11+ explicitly set to ``False `` and *not * specifying an API version,
12+ you should strongly consider specifying the API version.
13+ * Change default value for ``auto_load_api_version ``
14+ This is considered a major but not breaking change, since
15+ the default API version was also bumped to the latest
16+ Geocodio API version. Anyone depending on
17+ ``auto_load_api_version `` will still be using the same API
18+ version.
19+ * Add pre-commit with ruff to development workflow
20+
6211.5.0 (2024-10-31)
722+++++++++++++++++++
823
Original file line number Diff line number Diff line change @@ -16,10 +16,6 @@ Python wrapper for `Geocodio geocoding API <http://geocod.io/docs/>`_.
1616
1717Full documentation on `Read the Docs <http://pygeocodio.readthedocs.org/en/latest/ >`_.
1818
19- **If you are upgrading from a version prior to 0.2.0 please see the changelog
20- in HISTORY.rst. The default coordinate ordering has changed to something a bit
21- more sensible for most users. **
22-
2319Geocodio API Features
2420=====================
2521
@@ -158,7 +154,7 @@ And if you just want to parse an individual address into its components::
158154 },
159155 "formatted_address": "1600 Pennsylvania Ave, Washington DC"
160156 }
161-
157+
162158Reverse geocoding
163159-----------------
164160
Original file line number Diff line number Diff line change 4141
4242# General information about the project.
4343project = "pygeocodio"
44- copyright = "2014-2023 , Ben Lopatin and contributors"
44+ copyright = "2014-2025 , Ben Lopatin and contributors"
4545
4646# The version info for the project you're documenting, acts as replacement for
4747# |version| and |release|, also used in various other places throughout the
4848# built documents.
4949#
5050# The short X.Y version.
51- version = "1.4 "
51+ version = "2.0 "
5252# The full version, including alpha/beta/rc tags.
53- release = "1.4 .0"
53+ release = "2.0 .0"
5454
5555# The language for content autogenerated by Sphinx. Refer to documentation
5656# for a list of supported languages.
Original file line number Diff line number Diff line change 22
33__author__ = "Ben Lopatin"
44__email__ = "ben@benlopatin.com"
5- __version__ = "1.5 .0"
5+ __version__ = "2.0 .0"
66
77
88from geocodio .client import GeocodioClient # noqa
You can’t perform that action at this time.
0 commit comments