Skip to content

Commit b1f4ddf

Browse files
authored
Bump version 2.0.0 (#67)
1 parent fab04d0 commit b1f4ddf

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed

HISTORY.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
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+
621
1.5.0 (2024-10-31)
722
+++++++++++++++++++
823

README.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ Python wrapper for `Geocodio geocoding API <http://geocod.io/docs/>`_.
1616

1717
Full 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-
2319
Geocodio 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+
162158
Reverse geocoding
163159
-----------------
164160

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141

4242
# General information about the project.
4343
project = "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.

src/geocodio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Ben Lopatin"
44
__email__ = "[email protected]"
5-
__version__ = "1.5.0"
5+
__version__ = "2.0.0"
66

77

88
from geocodio.client import GeocodioClient # noqa

0 commit comments

Comments
 (0)