Skip to content

Commit e33e911

Browse files
chore: prepare release v0.2.0
- Bump version to 0.2.0 - Update CHANGELOG with breaking change notes - Document migration guide for GeocodioClient to Geocodio rename
1 parent e2a981f commit e33e911

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

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+
1017
## [0.1.0] - 2025-08-08
1118

1219
### Added
@@ -32,5 +39,6 @@ When ready to release:
3239
5. Push tags: `git push --tags`
3340
6. GitHub Actions will automatically publish to PyPI
3441

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
3644
[0.1.0]: https://github.com/Geocodio/geocodio-library-python/releases/tag/v0.1.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "geocodio-library-python"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
description = "A Python client for the Geocodio API"
99
readme = "README.md"
1010
requires-python = ">=3.11"

src/geocodio/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version information for geocodio package."""
22

3-
__version__ = "0.1.0"
3+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)