From 678b9c4903717988ce9345ae631e1c5574829723 Mon Sep 17 00:00:00 2001 From: Gabe Joseph Date: Wed, 21 Jun 2023 13:16:12 -0600 Subject: [PATCH] Release version 0.4.4 (#203) --- CHANGELOG.md | 5 +++++ pdm.lock | 12 ++++++++---- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf92449..7fdb38f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.4.4 (2023-06-21) +- Resolve compatibility with NumPy >= 1.24.0 [@gjoseph92](https://github.com/gjoseph92) +- Fix TypeError when no items overlap with the given `bounds` [@gjoseph92](https://github.com/gjoseph92) +- Change timer logging to DEBUG level [@jorge-cervest](https://github.com/jorge-cervest) + ## 0.4.3 (2022-09-14) - Support sequences of `Item`s [@gjoseph92](https://github.com/gjoseph92) - Fix compatibility with `pyproj>=3.4.0` [@gjoseph92](https://github.com/gjoseph92) diff --git a/pdm.lock b/pdm.lock index 77ed550..03f85db 100644 --- a/pdm.lock +++ b/pdm.lock @@ -1,3 +1,6 @@ +# This file is @generated by PDM. +# It is not intended for manual editing. + [[package]] name = "affine" version = "2.3.1" @@ -626,7 +629,7 @@ dependencies = [ ] [[package]] -name = "jaraco.classes" +name = "jaraco-classes" version = "3.2.2" requires_python = ">=3.7" summary = "Utility functions for Python class constructs" @@ -850,7 +853,7 @@ summary = "Store and access your passwords safely." dependencies = [ "SecretStorage>=3.2; sys_platform == \"linux\"", "importlib-metadata>=3.6; python_version < \"3.10\"", - "jaraco.classes", + "jaraco-classes", "jeepney>=0.4.2; sys_platform == \"linux\"", "pywin32-ctypes!=0.1.0,!=0.1.1; sys_platform == \"win32\"", ] @@ -1875,7 +1878,7 @@ requires_python = ">=3.7" summary = "Backport of pathlib-compatible object wrapper for zip files" [metadata] -lock_version = "4.0" +lock_version = "4.1" content_hash = "sha256:0fc927e219bfb591b8b9eaac9215c1767852bfc9582b3160b2622cacafa77fde" [metadata.files] @@ -2447,7 +2450,7 @@ content_hash = "sha256:0fc927e219bfb591b8b9eaac9215c1767852bfc9582b3160b2622caca {url = "https://files.pythonhosted.org/packages/60/8c/a691301c806902265d9b6b0182905b870ad8edc2e4cbcc3a27bd78c2cc80/ipywidgets-7.7.2.tar.gz", hash = "sha256:449ab8e7872d0f388ee5c5b3666b9d6af5e5618a5749fd62652680be37dff2af"}, {url = "https://files.pythonhosted.org/packages/d9/33/b318bd7cb2672a59466c3dcd24760f2221c163e851c9006b6c26af2c9152/ipywidgets-7.7.2-py2.py3-none-any.whl", hash = "sha256:3d47a7826cc6e2644d7cb90db26699451f8b42379cf63b761431b63d19984ca2"}, ] -"jaraco.classes 3.2.2" = [ +"jaraco-classes 3.2.2" = [ {url = "https://files.pythonhosted.org/packages/8f/e6/f92d21f915cee7acf1cfe3e0ec60b8e9888dcf40a9814e3838a87ba487d0/jaraco.classes-3.2.2-py3-none-any.whl", hash = "sha256:e6ef6fd3fcf4579a7a019d87d1e56a883f4e4c35cfe925f86731abc58804e647"}, {url = "https://files.pythonhosted.org/packages/fe/8b/7876fbd69f5a8ebfbda73c8c1a5346171ee5ac0db28e9f5b2bb80ee3e73b/jaraco.classes-3.2.2.tar.gz", hash = "sha256:6745f113b0b588239ceb49532aa09c3ebb947433ce311ef2f8e3ad64ebb74594"}, ] @@ -2607,6 +2610,7 @@ content_hash = "sha256:0fc927e219bfb591b8b9eaac9215c1767852bfc9582b3160b2622caca ] "livereload 2.6.3" = [ {url = "https://files.pythonhosted.org/packages/bd/60/6640b819e858562ef6684abac60593b7369fe0a8a064df426d3ab0ab894d/livereload-2.6.3.tar.gz", hash = "sha256:776f2f865e59fde56490a56bcc6773b6917366bce0c267c60ee8aaf1a0959869"}, + {url = "https://files.pythonhosted.org/packages/e3/05/ed67ccf462fff0b559e6ea7b3e3fcb20dec9d57bf90b5c5e72a6f316183e/livereload-2.6.3-py2.py3-none-any.whl", hash = "sha256:ad4ac6f53b2d62bb6ce1a5e6e96f1f00976a32348afedcb4b6d68df2a1d346e4"}, ] "locket 1.0.0" = [ {url = "https://files.pythonhosted.org/packages/2f/83/97b29fe05cb6ae28d2dbd30b81e2e402a3eed5f460c26e9eaa5895ceacf5/locket-1.0.0.tar.gz", hash = "sha256:5c0d4c052a8bbbf750e056a8e65ccd309086f4f0f18a2eac306a8dfa4112a632"}, diff --git a/pyproject.toml b/pyproject.toml index 7d692b8..c59c24f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ license = {text = "MIT"} name = "stackstac" readme = "README.md" requires-python = ">=3.8,<4.0" -version = "0.4.3" +version = "0.4.4" [project.urls] homepage = "https://stackstac.readthedocs.io/en/latest/index.html"