criterion 1.0.0.1 → 1.0.0.2
raw patch · 3 files changed
+19/−15 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.markdown +10/−8
- cbits/time-windows.c +1/−1
- criterion.cabal +8/−6
README.markdown view
@@ -3,13 +3,15 @@ This package provides the Criterion module, a Haskell library for measuring and analysing software performance. -To get started, read the documentation for the-[Criterion.Main](http://hackage.haskell.org/packages/archive/criterion/latest/doc/html/Criterion-Main.html)-module, and take a look at the programs in the-[examples](https://github.com/bos/criterion/tree/master/examples)-directory.+<a href="http://www.serpentine.com/criterion/fibber.html" target="_blank"><img src="http://www.serpentine.com/criterion/fibber-screenshot.png"></img></a> +To get started, read the <a+href="http://www.serpentine.com/criterion/tutorial.html"+target="_blank">online tutorial</a>, and take a look at the programs+in the <a href="/bos/criterion/tree/master/examples"+target="_blank">examples directory</a>. + # Building and installing To build and install criterion, just run@@ -20,13 +22,13 @@ # Get involved! Please report bugs via the-[github issue tracker](https://github.com/bos/criterion).+[github issue tracker](https://github.com/bos/criterion/issues). Master [github repository](https://github.com/bos/criterion): -* `git clone git://github.com/bos/criterion.git`+* `git clone https://github.com/bos/criterion.git` -There's also a [Mercurial mirror](http://bitbucket.org/bos/criterion):+There's also a [Mercurial mirror](https://bitbucket.org/bos/criterion): * `hg clone https://bitbucket.org/bos/criterion`
cbits/time-windows.c view
@@ -75,6 +75,6 @@ GetProcessTimes(GetCurrentProcess(), &creation, &exit, &kernel, &user); - time = to_quad_100ns(user_time) + to_quad_100ns(kernel_time);+ time = to_quad_100ns(user) + to_quad_100ns(kernel); return time / 1e7; }
criterion.cabal view
@@ -1,5 +1,5 @@ name: criterion-version: 1.0.0.1+version: 1.0.0.2 synopsis: Robust, reliable performance measurement and analysis license: BSD3 license-file: LICENSE@@ -32,11 +32,13 @@ analysing benchmarks and a set of driver functions that makes it easy to build and run benchmarks, and to analyse their results. .- The fastest way to get started is to read the documentation and- examples in the Criterion.Main module.+ The fastest way to get started is to read the+ <http://www.serpentine.com/criterion/tutorial.html online tutorial>,+ followed by the documentation and examples in the "Criterion.Main"+ module. .- For an example of the kinds of reports that criterion generates, see- <http://bos.github.com/criterion/>.+ For examples of the kinds of reports that criterion generates, see+ <http://www.serpentine.com/criterion the home page>. library exposed-modules:@@ -144,4 +146,4 @@ source-repository head type: git- location: git://github.com/bos/criterion.git+ location: https://github.com/bos/criterion.git