You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added support for the v2 chunk key encoding (`{"name": "v2", "configuration": {"separator": ...}}`) in the experimental `pydantic_zarr.experimental.v3` module, so experimental `ArraySpec` can model and round-trip Zarr v3 arrays that use it.
Fixed unreachable match arms in `parse_dtype_v3` (in both `pydantic_zarr.v3` and `pydantic_zarr.experimental.v3`) where copy-paste errors caused `float64` and `complex64` numpy dtypes to raise `ValueError: Unsupported dtype` instead of returning the correct string names.
Copy file name to clipboardExpand all lines: docs/release-notes.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
<!-- towncrier release notes start -->
4
4
5
+
## pydantic-zarr 0.10.0 (2026-04-16)
6
+
7
+
### Features
8
+
9
+
- The minimum supported Python is now 3.12 and the minimum supported NumPy is now 2.0. ([#145](https://github.com/zarr-developers/pydantic-zarr/issues/145))
10
+
- Use `type ...` instead of `...: TypeAlias` to declare type aliases. ([#145](https://github.com/zarr-developers/pydantic-zarr/issues/145))
0 commit comments