From cec946a879eb7706e41a0526752dd688c6e56fd5 Mon Sep 17 00:00:00 2001 From: AJ Friend Date: Tue, 3 Sep 2024 17:13:21 -0700 Subject: [PATCH] prep for v4.0.0b6 release (#394) --- CHANGELOG.md | 6 +++++- src/h3/_version.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 268c7446..81e800c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,11 @@ Because H3-Py is versioned in lockstep with the H3 core library, please avoid adding features or APIs which do not map onto the [H3 core API](https://uber.github.io/h3/#/documentation/api-reference/). -## Unreleased - 2024-08-23 +## Unreleased + +None. + +## [4.0.0b6] - 2024-09-03 - Added bindings for `cellToVertex`, `cellToVertexes`, `vertexToLatLng`, and `isValidVertex` (#323) diff --git a/src/h3/_version.py b/src/h3/_version.py index d1d952c9..41bf4d04 100644 --- a/src/h3/_version.py +++ b/src/h3/_version.py @@ -1,4 +1,4 @@ -__version__ = '4.0.0b5' +__version__ = '4.0.0b6' __description__ = 'Hierarchical hexagonal geospatial indexing system' __url__ = 'https://github.com/uber/h3-py' __license__ = 'Apache 2.0 License'