From 74ea76930d6356c01901f4eadbdce6d73e3d0d12 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Mon, 1 Aug 2022 10:04:19 -0500 Subject: [PATCH 1/2] Register BitRound (fix #346) --- numcodecs/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/numcodecs/__init__.py b/numcodecs/__init__.py index e254f528..40cc0d6c 100644 --- a/numcodecs/__init__.py +++ b/numcodecs/__init__.py @@ -100,6 +100,9 @@ from numcodecs.shuffle import Shuffle register_codec(Shuffle) +from numcodecs.bitround import BitRound +register_codec(BitRound) + try: from numcodecs.msgpacks import MsgPack register_codec(MsgPack) From d8a2943e8647f4c04ec1bab9df5db847019c332e Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Mon, 1 Aug 2022 13:53:43 -0500 Subject: [PATCH 2/2] Add release notes --- docs/release.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/release.rst b/docs/release.rst index d176a558..949ffacf 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -11,6 +11,17 @@ Release notes Unreleased ---------- +.. _release_0.10.2: + +0.10.2 +------ + +Fix +~~~ + +* Add BitRound (0.10.0) to registry. + By :user:`Josh Moore `, :issue:`342`. + .. _release_0.10.1: 0.10.1