Skip to content

Commit e3d691d

Browse files
committed
add release notes
1 parent d5ccda1 commit e3d691d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/release-notes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Unreleased
77
New features
88
~~~~~~~~~~~~
99

10+
* Implement ``zarr.from_array`` using concurrent streaming (:issue:`2622`).
11+
1012
Bug fixes
1113
~~~~~~~~~
1214
* Fixes ``order`` argument for Zarr format 2 arrays (:issue:`2679`).

src/zarr/api/synchronous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ def from_array(
985985
- dict[str, JSON]: A dict representation of an ``ArrayBytesCodec``.
986986
- ArrayBytesCodec: An instance of ``ArrayBytesCodec``.
987987
- "auto": a default serializer will be used. These defaults can be changed by modifying the value of
988-
`array.v3_default_serializer` in :mod:`zarr.core.config`.
988+
``array.v3_default_serializer`` in :mod:`zarr.core.config`.
989989
- "keep": Retain the serializer of the input array if it is a zarr Array.
990990
991991
fill_value : Any, optional

src/zarr/core/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3834,7 +3834,7 @@ async def from_array(
38343834
- dict[str, JSON]: A dict representation of an ``ArrayBytesCodec``.
38353835
- ArrayBytesCodec: An instance of ``ArrayBytesCodec``.
38363836
- "auto": a default serializer will be used. These defaults can be changed by modifying the value of
3837-
`array.v3_default_serializer`` in :mod:`zarr.core.config`.
3837+
``array.v3_default_serializer`` in :mod:`zarr.core.config`.
38383838
- "keep": Retain the serializer of the input array if it is a zarr Array.
38393839
38403840
fill_value : Any, optional

0 commit comments

Comments
 (0)