diff --git a/Tests/RNG.hs b/Tests/RNG.hs
--- a/Tests/RNG.hs
+++ b/Tests/RNG.hs
@@ -26,7 +26,7 @@
 instance CPRG Rng where
     cprgGenBytes len g    = first B.pack $ getBytes len g
     cprgSupplyEntropy e g = reseed e g
-    cprgNeedReseed _      = maxBound
+    cprgNeedReseed _      = NeverReseed
 
 reseed :: B.ByteString -> Rng -> Rng
 reseed bs (Rng (a,b)) = Rng (fromIntegral a', b')
diff --git a/crypto-numbers.cabal b/crypto-numbers.cabal
--- a/crypto-numbers.cabal
+++ b/crypto-numbers.cabal
@@ -1,5 +1,5 @@
 Name:                crypto-numbers
-Version:             0.1.1
+Version:             0.1.2
 Description:         Cryptographic numbers: functions and algorithms
 License:             BSD3
 License-file:        LICENSE
