Skip to content

Commit 49151b8

Browse files
committed
Merge branch 'release/0.4.3' into develop
2 parents 46238fb + d706eae commit 49151b8

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This includes:
2121
Add the following to your `:dependencies`:
2222

2323
```clj
24-
[criterium "0.4.2"]
24+
[criterium "0.4.3"]
2525
```
2626

2727
### Maven
@@ -30,7 +30,7 @@ Add the following to your `:dependencies`:
3030
<dependency>
3131
<groupId>criterium</groupId>
3232
<artifactId>criterium</artifactId>
33-
<version>0.4.2</version>
33+
<version>0.4.3</version>
3434
</dependency>
3535
```
3636

ReleaseNotes.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Release Notes
22

3+
# 0.4.3
4+
5+
- Push overhead estimation into benchmark*
6+
7+
This restores the ability to simply use benchmark and quick-benchmark to
8+
obtain raw benchmark results data. Closes #23
9+
10+
- Add option to suppress jvm option warnings
11+
12+
- Rename an incorrectly named test
13+
Rename a test wrongly named with the same name as a previous one that
14+
caused the former not to run.
15+
316
# 0.4.2
417

518
- Add warning when running with TieredStopAtLevel
@@ -21,7 +34,7 @@
2134
Will now warn if compilation occurs during execution count estimation.
2235

2336
- Compute and subtract the measurement overhead
24-
Estimate the measurement overhead on first run, and then subtract it from
37+
Estimate the measurement overhead on first run, and then subtract it from
2538
subsequent estimates.
2639

2740
An explicit overhead can be supplied with the :overhead keyword.

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject criterium "0.4.3-SNAPSHOT"
1+
(defproject criterium "0.4.3"
22
:description "Benchmarking library"
33
:url "https://github.com/hugoduncan/criterium"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)