Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 20 additions & 15 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,23 @@ Release notes

.. _unreleased:

Unreleased
----------
0.16.0
------

Enhancements
~~~~~~~~~~~~

* Add support for the Linux aarch64 architecture, and bump the minimum
macOS deployment target for x86_64 to 10.13.
* Add ``typesize`` argument to ``Blosc`` to allow for buffers that are passed to ``encode``
use that information. zarr v3 currently has its Blosc codec as bytes-to-bytes but does retain
the size information so using it here allows for massive compression ratio gains.
By :user:`Ilan Gold <ilan-gold>`
* Add support for the Linux aarch64 architecture,
By :user:`Agriya Khetarpal <agriyakhetarpal>`, :issue:`288`.
* Preallocate output buffers and resize directly as needed.
By :user:`John Kirkham <jakirkham>`, :issue:`656`
* ``Checksum32`` is now an abstract base clase, with ``checksum()`` as an abstract method.
This helps ensure that any subclasses implement the ``checksum()`` method.
:issue:`711`

Removals
~~~~~~~~
Expand All @@ -41,29 +49,26 @@ has always been experimental and there is no equivalent in the official
blsoc Python package.
By :user:`David Stansby <dstansby>`, :issue:`712`

Maintenance
~~~~~~~~~~~
* Replace internal ``Buffer`` usage with ``memoryview``\ s.
By :user:`John Kirkham <jakirkham>`, :issue:`656`
* Bump the minimum macOS deployment target for x86_64 to 10.13.
By :user:`Agriya Khetarpal <agriyakhetarpal>`, :issue:`288`.


0.15.1
------

Improvements
~~~~~~~~~~~~
* Raise a custom `UnknownCodecError` when trying to retrieve an unavailable codec.
By :user:`Cas Wognum <cwognum>`.
* Add ``typesize`` argument to ``Blosc`` to allow for buffers that are passed to ``encode``
use that information. zarr v3 currently has its Blosc codec as bytes-to-bytes but does retain
the size information so using it here allows for massive compression ratio gains.
By :user:`Ilan Gold <ilan-gold>`

Fixes
~~~~~
* Remove redundant ``id`` from codec metadata serialization in Zarr3 codecs.
By :user:`Norman Rzepka <normanrz>`, :issue:`685`
* Preallocate output buffers and resize directly as needed.
By :user:`John Kirkham <jakirkham>`, :issue:`656`

Maintenance
~~~~~~~~~~~
* Replace internal ``Buffer`` usage with ``memoryview``\ s.
By :user:`John Kirkham <jakirkham>`, :issue:`656`

.. _release_0.15.0:

Expand Down
Loading