From 30c008c193b5ac7bab44f6fa3e7407f6f7c6827b Mon Sep 17 00:00:00 2001 From: David Stansby Date: Mon, 18 Nov 2024 15:39:14 +0000 Subject: [PATCH] Changelog for 0.14.1 --- docs/release.rst | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/release.rst b/docs/release.rst index 5d64406f..001f6506 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -6,14 +6,24 @@ Release notes # to document your changes. On releases it will be # re-indented so that it does not show up in the notes. + .. _unreleased: + + Unreleased + ---------- + .. _unreleased: -Unreleased ----------- +0.14.1 +------ Fixes ~~~~~ -* Cleanup ``crc32c`` soft dependency. +* Cleanups to the ``crc32c`` soft dependency. + Whereas in ``numcodecs`` 0.14.0 a runtime error was raised if + the ``CRC32C`` codec used without the ``crc32c`` installed, + the ``CRC32C`` codec is no longer defined at import time if + ``crc32c`` is not installed. This has been changed to match + the behaviour of other optional dependencies/codecs. By :user:`John Kirkham `, :issue:`637` Improvements