benchpress 0.2.2.1 → 0.2.2.2
raw patch · 2 files changed
+8/−3 lines, 2 filesdep ~basedep ~timePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, time
API changes (from Hackage documentation)
Files
- Test/BenchPress.hs +4/−0
- benchpress.cabal +4/−3
Test/BenchPress.hs view
@@ -254,5 +254,9 @@ secsToMillis :: NominalDiffTime -> Double secsToMillis t = realToFrac t * (10^(3 :: Int)) +-- For GHC 6.6 compatibility.++-- | @intercalate xs xss@ inserts the list @xs@ in between the lists+-- in @xss@ and concatenates the result. intercalate :: [a] -> [[a]] -> [a] intercalate xs = concat . intersperse xs
benchpress.cabal view
@@ -1,5 +1,5 @@ name: benchpress-version: 0.2.2.1+version: 0.2.2.2 synopsis: Micro-benchmarking with detailed statistics. Description: Benchmarks actions and produces statistics such as min, mean, median, standard deviation,@@ -13,14 +13,15 @@ build-type: Simple cabal-version: >= 1.2 category: Testing+homepage: http://github.com/tibbe/benchpress library exposed-modules: Test.BenchPress other-modules: Math.Statistics - build-depends: base >= 2.0 && < 3.1,+ build-depends: base >= 2.0 && < 4.1, mtl >= 1 && < 1.2,- time >= 1.0 && < 1.2+ time >= 1 && < 1.2 ghc-options: -funbox-strict-fields -Wall