From c10784f24df00630422111866025c72fe516fa7e Mon Sep 17 00:00:00 2001 From: Oliver Watt-Meyer Date: Mon, 20 Jan 2025 10:36:16 -0800 Subject: [PATCH] Bump version to 0.4.2 --- HISTORY.rst | 7 ++++++- setup.py | 2 +- tests/test_core.py | 2 +- zarrdump/__init__.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 82e56b8..0b69226 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,9 +1,14 @@ +v0.4.2 (2025-01-20) +------------------- + +- pin zarr-python dependency to below version 3 +- specify python>=3.8 requirement in setup.py + v0.4.1 (2022-08-22) ------------------- - ensure can open and dump zarr group when xarray v2022.06.0 installed - v0.4.0 (2022-08-13) ------------------- diff --git a/setup.py b/setup.py index 92b1803..27c3d49 100644 --- a/setup.py +++ b/setup.py @@ -51,5 +51,5 @@ packages=find_packages(), test_suite="tests", tests_require=test_requirements, - version="0.4.1", + version="0.4.2", ) \ No newline at end of file diff --git a/tests/test_core.py b/tests/test_core.py index 260ef5a..6a23870 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -10,7 +10,7 @@ def test_version(): - assert zarrdump.__version__ == "0.4.1" + assert zarrdump.__version__ == "0.4.2" @pytest.fixture() diff --git a/zarrdump/__init__.py b/zarrdump/__init__.py index 13cac0b..1f57c96 100644 --- a/zarrdump/__init__.py +++ b/zarrdump/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.4.1" +__version__ = "0.4.2" from .core import dump