benchpress 0.2.2.6 → 0.2.2.7
raw patch · 1 files changed
+6/−6 lines, 1 filesdep ~basedep ~mtldep ~timenew-uploaderPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, mtl, time
API changes (from Hackage documentation)
- Test.BenchPress: instance Show Stats
- Test.BenchPress: max :: Stats -> Double
- Test.BenchPress: mean :: Stats -> Double
- Test.BenchPress: median :: Stats -> Double
- Test.BenchPress: min :: Stats -> Double
- Test.BenchPress: percentiles :: Stats -> [(Int, Double)]
- Test.BenchPress: stddev :: Stats -> Double
+ Test.BenchPress: [max] :: Stats -> Double
+ Test.BenchPress: [mean] :: Stats -> Double
+ Test.BenchPress: [median] :: Stats -> Double
+ Test.BenchPress: [min] :: Stats -> Double
+ Test.BenchPress: [percentiles] :: Stats -> [(Int, Double)]
+ Test.BenchPress: [stddev] :: Stats -> Double
+ Test.BenchPress: instance GHC.Show.Show Test.BenchPress.Stats
Files
- benchpress.cabal +6/−6
benchpress.cabal view
@@ -1,5 +1,5 @@ name: benchpress-version: 0.2.2.6+version: 0.2.2.7 synopsis: Micro-benchmarking with detailed statistics. Description: Benchmarks actions and produces statistics such as min, mean, median, standard deviation,@@ -9,19 +9,19 @@ license: BSD3 license-file: LICENSE author: Johan Tibell-maintainer: johan.tibell@gmail.com+maintainer: me@willsewell.com build-type: Simple cabal-version: >= 1.2 category: Testing-homepage: http://github.com/tibbe/benchpress+homepage: https://github.com/WillSewell/benchpress library exposed-modules: Test.BenchPress other-modules: Math.Statistics - build-depends: base >= 2.0 && < 4.6,- mtl >= 1 && < 2.2,- time >= 1 && < 1.5+ build-depends: base >= 2.0 && < 4.9,+ mtl >= 1 && < 2.3,+ time >= 1 && < 1.6 ghc-options: -funbox-strict-fields -Wall