Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Jul 18, 2024
1 parent 06a6907 commit 3ea1cdd
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ Maven:
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>channels</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</dependency>
```

Gradle:

```groovy
implementation 'com.softwaremill.jox:channels:0.2.1'
implementation 'com.softwaremill.jox:channels:0.3.0'
```

### Usage
Expand Down Expand Up @@ -236,7 +236,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.2.1, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:
The test results for version 0.3.0, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:

```
Benchmark (capacity) (chainLength) (parallelism) Mode Cnt Score Error Units
Expand Down Expand Up @@ -332,14 +332,14 @@ Maven:
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>structured</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</dependency>
```

Gradle:

```groovy
implementation 'com.softwaremill.jox:structured:0.2.1'
implementation 'com.softwaremill.jox:structured:0.3.0'
```

### Usage
Expand Down Expand Up @@ -506,14 +506,14 @@ Maven:
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>channel-ops</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</dependency>
```

Gradle:

```groovy
implementation 'com.softwaremill.jox:channel-ops:0.2.1'
implementation 'com.softwaremill.jox:channel-ops:0.3.0'
```

### Usage
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.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>bench-java</artifactId>
<version>0.2.1</version>
<version>0.3.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.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>bench-kotlin</artifactId>
<version>0.2.1</version>
<version>0.3.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.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>bench</artifactId>
<packaging>pom</packaging>
<version>0.2.1</version>
<version>0.3.0</version>

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

Expand Down
8 changes: 4 additions & 4 deletions channel-ops/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.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>channel-ops</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
<packaging>jar</packaging>

<dependencies>
Expand All @@ -27,12 +27,12 @@
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>channels</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</dependency>
<dependency>
<groupId>com.softwaremill.jox</groupId>
<artifactId>structured</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions channels/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.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>channels</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
<packaging>jar</packaging>

<dependencies>
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.2.1</version>
<version>0.3.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions structured/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.2.1</version>
<version>0.3.0</version>
</parent>

<artifactId>structured</artifactId>
<version>0.2.1</version>
<version>0.3.0</version>
<packaging>jar</packaging>

<dependencies>
Expand Down

0 comments on commit 3ea1cdd

Please sign in to comment.