Skip to content

Commit 12c4823

Browse files
chore: prepare release v0.5.1
1 parent 1e7d7ab commit 12c4823

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.1] - 2026-02-18
11+
12+
### Fixed
13+
- Fixed parsing of state legislative district data (`stateleg` field). The API response key changed from `stateleg` to `state_legislative_districts` and the structure changed from a flat list to a dict with `house`/`senate` keys containing legislator info. The library now handles both formats.
14+
1015
## [0.5.0] - 2026-01-06
1116

1217
### Added
@@ -54,7 +59,8 @@ When ready to release:
5459
5. Push tags: `git push --tags`
5560
6. GitHub Actions will automatically publish to PyPI
5661

57-
[Unreleased]: https://github.com/Geocodio/geocodio-library-python/compare/v0.5.0...HEAD
62+
[Unreleased]: https://github.com/Geocodio/geocodio-library-python/compare/v0.5.1...HEAD
63+
[0.5.1]: https://github.com/Geocodio/geocodio-library-python/compare/v0.5.0...v0.5.1
5864
[0.5.0]: https://github.com/Geocodio/geocodio-library-python/compare/v0.4.0...v0.5.0
5965
[0.2.0]: https://github.com/Geocodio/geocodio-library-python/compare/v0.1.0...v0.2.0
6066
[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.5.0"
7+
version = "0.5.1"
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.5.0"
3+
__version__ = "0.5.1"

0 commit comments

Comments
 (0)