From 3c1d235ac7cf9ec7ebdde1edc427a1f3b20c92ea Mon Sep 17 00:00:00 2001 From: AJ Friend Date: Sun, 13 Oct 2024 17:53:39 -0700 Subject: [PATCH] Make sure docs and PyPI page are up-to-date. (#419) --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- readme.md | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42111537..449d14c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,10 @@ avoid adding features or APIs which do not map onto the None. +## [4.1.1] - 2024-10-13 + +- Make sure docs and PyPI page are up-to-date. + ## [4.1.0] - 2024-10-13 - Final v4.1 release inculdes all v4.x changes below. diff --git a/pyproject.toml b/pyproject.toml index 05fd5ece..a07440f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'scikit_build_core.build' [project] name = 'h3' -version = '4.1.0' +version = '4.1.1' description = "Uber's hierarchical hexagonal geospatial indexing system" readme = 'readme.md' license = {file = 'LICENSE'} diff --git a/readme.md b/readme.md index 929e8811..8680a8ce 100644 --- a/readme.md +++ b/readme.md @@ -15,7 +15,7 @@ ---- -## ANNOUNCEMENT: v4.1.0 final released on 2024-10-13! +## ANNOUNCEMENT: v4.1 final released on 2024-10-13! Feedback is welcome via [Issues](https://github.com/uber/h3-py/issues/new), @@ -105,5 +105,5 @@ Use `h3.versions()` to see the version numbers for both ```python >>> import h3 >>> h3.versions() -{'c': '3.6.3', 'python': '3.6.1'} +{'c': '4.1.0', 'python': '4.1.1'} ```