File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.2.0] - 2025-08-08
11
+
12
+ ### Changed
13
+ - ** BREAKING** : Renamed main client class from ` GeocodioClient ` to ` Geocodio ` for simplicity and consistency with other SDKs
14
+ - Migration: Change imports from ` from geocodio import GeocodioClient ` to ` from geocodio import Geocodio `
15
+ - Migration: Update instantiation from ` client = GeocodioClient(...) ` to ` client = Geocodio(...) `
16
+
10
17
## [ 0.1.0] - 2025-08-08
11
18
12
19
### Added
@@ -32,5 +39,6 @@ When ready to release:
32
39
5 . Push tags: ` git push --tags `
33
40
6 . GitHub Actions will automatically publish to PyPI
34
41
35
- [ Unreleased ] : https://github.com/Geocodio/geocodio-library-python/compare/v0.1.0...HEAD
42
+ [ Unreleased ] : https://github.com/Geocodio/geocodio-library-python/compare/v0.2.0...HEAD
43
+ [ 0.2.0 ] : https://github.com/Geocodio/geocodio-library-python/compare/v0.1.0...v0.2.0
36
44
[ 0.1.0 ] : https://github.com/Geocodio/geocodio-library-python/releases/tag/v0.1.0
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
5
5
[project ]
6
6
name = " geocodio-library-python"
7
- version = " 0.1 .0"
7
+ version = " 0.2 .0"
8
8
description = " A Python client for the Geocodio API"
9
9
readme = " README.md"
10
10
requires-python = " >=3.11"
Original file line number Diff line number Diff line change 1
1
"""Version information for geocodio package."""
2
2
3
- __version__ = "0.1 .0"
3
+ __version__ = "0.2 .0"
You can’t perform that action at this time.
0 commit comments