From 0edede032a380ff09f81557c8fed3952fed43741 Mon Sep 17 00:00:00 2001 From: AJ Friend Date: Sun, 19 May 2024 08:42:04 -0700 Subject: [PATCH] prep for v4b5 release --- CHANGELOG.md | 6 +++++- src/h3/_version.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 011db491..37cf91cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,11 @@ avoid adding features or APIs which do not map onto the - None +## [4.0.0b5] - 2024-05-19 + +- Rename `H3Poly` and `H3MultiPoly` to `LatLngPoly` and `LatLngMultiPoly` (#364) +- Add ability to convert from `__geo_interface__` objects with Z-coordinate (#371) + ## [4.0.0b4] - 2024-04-14 No changes, just testing: #360 @@ -29,7 +34,6 @@ No changes, just testing: #360 - Use functions instead of methods for the interface functions (#334) - Use `list` instead of `set` for unordered Python outputs (#339) - ## [4.0.0b2] - 2022-11-23 - Build Python 3.11 wheels (#297) diff --git a/src/h3/_version.py b/src/h3/_version.py index fd4db08a..d1d952c9 100644 --- a/src/h3/_version.py +++ b/src/h3/_version.py @@ -1,4 +1,4 @@ -__version__ = '4.0.0b4' +__version__ = '4.0.0b5' __description__ = 'Hierarchical hexagonal geospatial indexing system' __url__ = 'https://github.com/uber/h3-py' __license__ = 'Apache 2.0 License'