We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16825e6 commit c15e185Copy full SHA for c15e185
docs/release.rst
@@ -11,6 +11,17 @@ Release notes
11
Unreleased
12
----------
13
14
+.. _release_0.10.2:
15
+
16
+0.10.2
17
+------
18
19
+Fix
20
+~~~
21
22
+* Add BitRound (0.10.0) to registry.
23
+ By :user:`Josh Moore <joshmoore>`, :issue:`342`.
24
25
.. _release_0.10.1:
26
27
0.10.1
numcodecs/__init__.py
@@ -100,6 +100,9 @@
100
from numcodecs.shuffle import Shuffle
101
register_codec(Shuffle)
102
103
+from numcodecs.bitround import BitRound
104
+register_codec(BitRound)
105
106
try:
107
from numcodecs.msgpacks import MsgPack
108
register_codec(MsgPack)
0 commit comments