scientific 0.3.4.8 → 0.3.4.9
raw patch · 3 files changed
+6/−3 lines, 3 filesdep ~QuickCheckPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck
API changes (from Hackage documentation)
Files
- changelog +3/−0
- scientific.cabal +2/−2
- test/test.hs +1/−1
changelog view
@@ -1,3 +1,6 @@+0.3.4.9+ * Support QuickCheck-2.9.+ 0.3.4.8 * Make bytestring-builder's installation conditional based on a Cabal flag.
scientific.cabal view
@@ -1,5 +1,5 @@ name: scientific-version: 0.3.4.8+version: 0.3.4.9 synopsis: Numbers represented using scientific notation description: @Data.Scientific@ provides the number type 'Scientific'. Scientific numbers are@@ -108,7 +108,7 @@ , tasty-smallcheck >= 0.2 && < 0.9 , tasty-quickcheck >= 0.8 && < 0.9 , smallcheck >= 1.0 && < 1.2- , QuickCheck >= 2.5 && < 2.9+ , QuickCheck >= 2.5 && < 2.10 , text >= 0.8 && < 1.3 if flag(bytestring-builder)
test/test.hs view
@@ -252,7 +252,7 @@ ] toBoundedIntegerConversion- :: forall i. (Integral i, Bounded i, Show i)+ :: forall i. (Integral i, Bounded i) => i -> Scientific -> Bool toBoundedIntegerConversion _ s = case toBoundedInteger s :: Maybe i of