Skip to content

Commit

Permalink
Release 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Jan 23, 2024
1 parent 7814e18 commit a21dd9e
Show file tree
Hide file tree
Showing 7 changed files with 3,290 additions and 3,290 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ Maven:
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>core</artifactId>
<version>0.0.4</version>
<version>0.0.5</version>
</dependency>
```

Gradle:

```groovy
implementation 'com.softwaremill.jox:core:0.0.4'
implementation 'com.softwaremill.jox:core:0.0.5'
```

SBT:

```scala
libraryDependencies += "com.softwaremill.jox" % "core" % "0.0.4"
libraryDependencies += "com.softwaremill.jox" % "core" % "0.0.5"
```

## Usage
Expand Down Expand Up @@ -223,7 +223,7 @@ channel is done, bypassing the behavior described above.
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.4, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:
The test results for version 0.0.5, 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.4</version>
<version>0.0.5</version>
</parent>

<artifactId>bench-java</artifactId>
<version>0.0.4</version>
<version>0.0.5</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.4</version>
<version>0.0.5</version>
</parent>

<artifactId>bench-kotlin</artifactId>
<version>0.0.4</version>
<version>0.0.5</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.4</version>
<version>0.0.5</version>
</parent>

<artifactId>bench</artifactId>
<packaging>pom</packaging>
<version>0.0.4</version>
<version>0.0.5</version>

<modules>
<module>bench-java</module>
Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>core</artifactId>
<version>0.0.4</version>
<version>0.0.5</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.4</version>
<version>0.0.5</version>
</parent>

<artifactId>core</artifactId>
<version>0.0.4</version>
<version>0.0.5</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
Loading

0 comments on commit a21dd9e

Please sign in to comment.