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 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)