diff --git a/CHANGELOG.md b/CHANGELOG.md index fdc52e1..abdf664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4.0] - 2026-08-28 + ### Added - Public census accessors on `GeocodioFields`: `fields.census` (the requested append, most recent vintage when several are present), `fields.get_census(year)` (accepts `2023`, `"2023"` or `"census2023"`), `fields.census_years` and `fields.census_data`. The private `fields._census` dict and the dynamic `fields.census2023` attributes are unchanged. - `GeocodingResult.match_type` and `GeocodingResult.address_lines`, both of which the API returns on every result and the model previously dropped. diff --git a/pyproject.toml b/pyproject.toml index 5d83674..888f1ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "geocodio-library-python" -version = "1.3.0" +version = "1.4.0" description = "A Python client for the Geocodio API" readme = "README.md" requires-python = ">=3.11" diff --git a/src/geocodio/_version.py b/src/geocodio/_version.py index 1b798df..3d98b47 100644 --- a/src/geocodio/_version.py +++ b/src/geocodio/_version.py @@ -1,3 +1,3 @@ """Version information for geocodio package.""" -__version__ = "1.3.0" +__version__ = "1.4.0"