Skip to content

Commit

Permalink
Release 0.4.0.RELEASE.
Browse files Browse the repository at this point in the history
Closes #38
  • Loading branch information
mp911de committed Feb 22, 2024
1 parent ba7cc32 commit de10bcb
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class SimpleBenchmark {

Decorate your JMH benchmark with `@RunWith(Microbenchmark.class)`. Now you're able to leverage your IDE to start JMH benchmarks without fighting the command line.

### JUnit 5.5.x
### JUnit 5.10.x

```java
@Microbenchmark
Expand All @@ -57,9 +57,10 @@ public class SimpleBenchmark {
**Compatibility matrix**

| MBR Version | JUnit 5 Version |
| ----------- | --------------- |
| 0.2.x | 5.5+ |
| 0.3.x | 5.8+ |
|-------------|----------------|
| 0.2.x | 5.5+ |
| 0.3.x | 5.8+ |
| 0.4.x | 5.10+ |

Annotate your JMH benchmark with `@Microbenchmark`. Now you're able to leverage your IDE
to start JMH benchmarks without fighting the command line.
Expand Down
2 changes: 1 addition & 1 deletion microbenchmark-runner-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.mp911de.microbenchmark-runner</groupId>
<artifactId>microbenchmark-runner-parent</artifactId>
<version>0.4.0.BUILD-SNAPSHOT</version>
<version>0.4.0.RELEASE</version>
</parent>

<artifactId>microbenchmark-runner-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion microbenchmark-runner-extras/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.mp911de.microbenchmark-runner</groupId>
<artifactId>microbenchmark-runner-parent</artifactId>
<version>0.4.0.BUILD-SNAPSHOT</version>
<version>0.4.0.RELEASE</version>
</parent>

<artifactId>microbenchmark-runner-extras</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion microbenchmark-runner-junit4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.mp911de.microbenchmark-runner</groupId>
<artifactId>microbenchmark-runner-parent</artifactId>
<version>0.4.0.BUILD-SNAPSHOT</version>
<version>0.4.0.RELEASE</version>
</parent>

<artifactId>microbenchmark-runner-junit4</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion microbenchmark-runner-junit5-smoke-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>microbenchmark-runner-parent</artifactId>
<groupId>com.github.mp911de.microbenchmark-runner</groupId>
<version>0.4.0.BUILD-SNAPSHOT</version>
<version>0.4.0.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion microbenchmark-runner-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.github.mp911de.microbenchmark-runner</groupId>
<artifactId>microbenchmark-runner-parent</artifactId>
<version>0.4.0.BUILD-SNAPSHOT</version>
<version>0.4.0.RELEASE</version>
</parent>

<artifactId>microbenchmark-runner-junit5</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.github.mp911de.microbenchmark-runner</groupId>
<artifactId>microbenchmark-runner-parent</artifactId>
<version>0.4.0.BUILD-SNAPSHOT</version>
<version>0.4.0.RELEASE</version>
<packaging>pom</packaging>
<name>JUnit-based Microbenchmark Runners for JMH</name>

Expand Down

0 comments on commit de10bcb

Please sign in to comment.