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 3
3
History
4
4
-------
5
5
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
+
6
21
1.5.0 (2024-10-31)
7
22
+++++++++++++++++++
8
23
Original file line number Diff line number Diff line change @@ -16,10 +16,6 @@ Python wrapper for `Geocodio geocoding API <http://geocod.io/docs/>`_.
16
16
17
17
Full documentation on `Read the Docs <http://pygeocodio.readthedocs.org/en/latest/ >`_.
18
18
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
-
23
19
Geocodio API Features
24
20
=====================
25
21
@@ -158,7 +154,7 @@ And if you just want to parse an individual address into its components::
158
154
},
159
155
"formatted_address": "1600 Pennsylvania Ave, Washington DC"
160
156
}
161
-
157
+
162
158
Reverse geocoding
163
159
-----------------
164
160
Original file line number Diff line number Diff line change 41
41
42
42
# General information about the project.
43
43
project = "pygeocodio"
44
- copyright = "2014-2023 , Ben Lopatin and contributors"
44
+ copyright = "2014-2025 , Ben Lopatin and contributors"
45
45
46
46
# The version info for the project you're documenting, acts as replacement for
47
47
# |version| and |release|, also used in various other places throughout the
48
48
# built documents.
49
49
#
50
50
# The short X.Y version.
51
- version = "1.4 "
51
+ version = "2.0 "
52
52
# The full version, including alpha/beta/rc tags.
53
- release = "1.4 .0"
53
+ release = "2.0 .0"
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
Original file line number Diff line number Diff line change 2
2
3
3
__author__ = "Ben Lopatin"
4
4
5
- __version__ = "1.5 .0"
5
+ __version__ = "2.0 .0"
6
6
7
7
8
8
from geocodio .client import GeocodioClient # noqa
You can’t perform that action at this time.
0 commit comments