Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Feb 19, 2024
1 parent 6beee76 commit 10f28ea
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ Maven:
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>core</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
</dependency>
```

Gradle:

```groovy
implementation 'com.softwaremill.jox:core:0.0.7'
implementation 'com.softwaremill.jox:core:0.1.0'
```

SBT:

```scala
libraryDependencies += "com.softwaremill.jox" % "core" % "0.0.7"
libraryDependencies += "com.softwaremill.jox" % "core" % "0.1.0"
```

## Usage
Expand Down Expand Up @@ -215,7 +215,7 @@ class Demo6 {
The project includes benchmarks implemented using JMH - both for the `Channel`, as well as for some built-in Java
synchronisation primitives (queues), as well as the Kotlin channel implementation.

The test results for version 0.0.7, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:
The test results for version 0.1.0, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:

```
Benchmark (capacity) (chainLength) Mode Cnt Score Error Units
Expand Down
4 changes: 2 additions & 2 deletions bench/bench-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>com.softwaremill.jox</groupId>
<artifactId>bench</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
</parent>

<artifactId>bench-java</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
<packaging>jar</packaging>

<build>
Expand Down
4 changes: 2 additions & 2 deletions bench/bench-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>com.softwaremill.jox</groupId>
<artifactId>bench</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
</parent>

<artifactId>bench-kotlin</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
<packaging>jar</packaging>

<properties>
Expand Down
6 changes: 3 additions & 3 deletions bench/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<parent>
<groupId>com.softwaremill.jox</groupId>
<artifactId>parent</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
</parent>

<artifactId>bench</artifactId>
<packaging>pom</packaging>
<version>0.0.7</version>
<version>0.1.0</version>

<modules>
<module>bench-java</module>
Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>core</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>com.softwaremill.jox</groupId>
<artifactId>parent</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
</parent>

<artifactId>core</artifactId>
<version>0.0.7</version>
<version>0.1.0</version>
<packaging>jar</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>com.softwaremill.jox</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>0.0.7</version>
<version>0.1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

1 comment on commit 10f28ea

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.20.

Benchmark suite Current: 10f28ea Previous: 2c85114 Ratio
com.softwaremill.jox.ParallelKotlinBenchmark.parallelChannels_defaultDispatcher ( {"capacity":"0","parallelism":"10000"} ) 86.49827994 ns/op 66.75720507999999 ns/op 1.30

This comment was automatically generated by workflow using github-action-benchmark.

CC: @adamw

Please sign in to comment.