packages feed

testbench 0.2.0.0 → 0.2.0.1

raw patch · 3 files changed

+11/−3 lines, 3 files

Files

Changelog.md view
@@ -1,5 +1,11 @@-0.2.0.0-=======+0.2.0.1 (12 July, 2017)+=======================++* Accidentally deleted the type signatures of `normalForm` and+  `normalFormIO`, breaking compilation.++0.2.0.0 (12 July, 2017)+=======================  * Benchmarking results are now printed out incrementally rather than   requiring all of them to be completed first.
src/TestBench.hs view
@@ -515,11 +515,13 @@ --   can - and should - be evaluated to normal form. -- --   @since 0.2.0.0 normalForm :: (NFData b) => CompParams a b+normalForm :: (NFData b) => CompParams a b normalForm = benchNormalForm `mappend` weigh  -- | A variant of 'normalForm' where the results are within @IO@. -- --   @since 0.2.0.0 normalFormIO :: (NFData b) => CompParams a (IO b)+normalFormIO :: (NFData b) => CompParams a (IO b) normalFormIO = benchNormalFormIO `mappend` weighIO  -- | Evaluate all IO-based benchmarks to weak head normal form.
testbench.cabal view
@@ -1,5 +1,5 @@ name:                testbench-version:             0.2.0.0+version:             0.2.0.1 synopsis:            Create tests and benchmarks together description: { Test your benchmarks!  Benchmark your tests!