Skip to content

Commit

Permalink
Bump version to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverwm1 committed Jan 20, 2025
1 parent 98e99cd commit c10784f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -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)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
packages=find_packages(),
test_suite="tests",
tests_require=test_requirements,
version="0.4.1",
version="0.4.2",
)
2 changes: 1 addition & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


def test_version():
assert zarrdump.__version__ == "0.4.1"
assert zarrdump.__version__ == "0.4.2"


@pytest.fixture()
Expand Down
2 changes: 1 addition & 1 deletion zarrdump/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.4.1"
__version__ = "0.4.2"

from .core import dump

0 comments on commit c10784f

Please sign in to comment.