From d1a5a3b9b2add6f970a840f154c51947d312cdd7 Mon Sep 17 00:00:00 2001 From: AJ Friend Date: Fri, 15 Apr 2022 10:39:54 -0700 Subject: [PATCH] prep for v3.7.4 (#230) * prep for v3.7.4 * words --- CHANGELOG.md | 8 ++++++++ dev_notes.md | 2 +- src/h3/_version.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2194b44..7bf87cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,15 @@ avoid adding features or APIs which do not map onto the ## Unreleased +- None + +## [3.7.4] - 2022-04-14 + - Website and API documentation; along with docstring cleanup. +- Add support for linters and IDE tooling (#213) +- Remove Py 3.5 wheel for Windows (#214) +- Py 3.10 wheels and on more architectures (#220, #221, #223, #225) +- Greatly reduce sdist size (#227, #229) ## [3.7.3] - 2021-06-12 diff --git a/dev_notes.md b/dev_notes.md index 3fac1089..51c1c5fd 100644 --- a/dev_notes.md +++ b/dev_notes.md @@ -39,7 +39,7 @@ git commit ... - update `CHANGELOG.md` to reflect any changes since the last release - update the `h3-py` version in `src/h3/_version.py` -- create, get reviews, and merge a PR with these changes +- create PR, get reviews, and merge with these changes - go to https://github.com/uber/h3-py/releases and "Draft a new release" - set the tag version and the release to the version. e.g., `v3.7.2` (alternatively: `git tag v3.7.2` && `git push origin --tags`) diff --git a/src/h3/_version.py b/src/h3/_version.py index 80483ce5..eb5cae01 100644 --- a/src/h3/_version.py +++ b/src/h3/_version.py @@ -1,4 +1,4 @@ -__version__ = '3.7.3' +__version__ = '3.7.4' __description__ = 'Hierarchical hexagonal geospatial indexing system' __url__ = 'https://github.com/uber/h3-py' __license__ = "Apache 2.0 License"