bitwise 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+18/−18 lines, 2 filesdep ~QuickCheckdep ~basedep ~bitwisePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, base, bitwise, criterion
API changes (from Hackage documentation)
Files
- bitwise.cabal +12/−13
- extra/testsuite.hs +6/−5
bitwise.cabal view
@@ -1,5 +1,5 @@ Name: bitwise-Version: 0.1.0.1+Version: 0.1.0.2 Synopsis: fast multi-dimensional unboxed bit packed Bool arrays Description: Unboxed multidimensional bit packed Bool arrays with fast aggregate@@ -45,7 +45,7 @@ * immutable zipWith @Bool -> Bool -> Bool@: @BitArray ix@ is about 1300x faster than @UArray ix Bool@. -Homepage: https://gitorious.org/bitwise+Homepage: http://code.mathr.co.uk/bitwise License: BSD3 License-file: LICENSE Author: Claude Heiland-Allen@@ -72,7 +72,7 @@ Compat Build-depends:- base >= 2 && < 6+ base >= 2 && < 4.9 if (impl(ghc >= 7.4)) HS-source-dirs: src ghc74@@ -86,31 +86,30 @@ HS-source-dirs: src hugs98 GHC-Options: -Wall- GHC-Prof-Options: -prof -auto-all -caf-all Test-Suite bitwise-testsuite type: exitcode-stdio-1.0 main-is: extra/testsuite.hs build-depends:- bitwise == 0.1.0.1,- base >= 2 && < 6,- QuickCheck >= 2.4 && < 2.5+ bitwise == 0.1.0.2,+ base >= 2 && < 4.9,+ QuickCheck >= 2.4 && < 2.9 Benchmark bitwise-benchmark type: exitcode-stdio-1.0 main-is: extra/benchmark.hs build-depends:- bitwise == 0.1.0.1,- base >= 2 && < 6,+ bitwise == 0.1.0.2,+ base >= 2 && < 4.9, array, bytestring,- criterion >= 0.6 && < 0.7+ criterion >= 0.6 && < 1.2 source-repository head type: git- location: git://gitorious.org/bitwise/bitwise.git+ location: http://code.mathr.co.uk/bitwise.git source-repository this type: git- location: git://gitorious.org/bitwise/bitwise.git- tag: v0.1.0.1+ location: http://code.mathr.co.uk/bitwise.git+ tag: v0.1.0.2
extra/testsuite.hs view
@@ -14,11 +14,6 @@ import Test.QuickCheck import Test.QuickCheck.All(quickCheckAll) -main :: IO ()-main = do- r <- $quickCheckAll- if r then exitSuccess else exitFailure- fromW :: Word16 -> Int fromW = fromIntegral @@ -81,3 +76,9 @@ , ixmap , (!?) -}++return []+main :: IO ()+main = do+ r <- $quickCheckAll+ if r then exitSuccess else exitFailure