Skip to content

Commit 19c1461

Browse files
committed
Release 0.4.0
1 parent c53e153 commit 19c1461

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ Maven:
4747
<dependency>
4848
<groupId>com.softwaremill.jox</groupId>
4949
<artifactId>channels</artifactId>
50-
<version>0.3.1</version>
50+
<version>0.4.0</version>
5151
</dependency>
5252
```
5353

5454
Gradle:
5555

5656
```groovy
57-
implementation 'com.softwaremill.jox:channels:0.3.1'
57+
implementation 'com.softwaremill.jox:channels:0.4.0'
5858
```
5959

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

257-
The test results for version 0.3.1, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:
257+
The test results for version 0.4.0, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:
258258

259259
```
260260
Benchmark (capacity) (chainLength) (parallelism) Mode Cnt Score Error Units
@@ -352,14 +352,14 @@ Maven:
352352
<dependency>
353353
<groupId>com.softwaremill.jox</groupId>
354354
<artifactId>structured</artifactId>
355-
<version>0.3.1</version>
355+
<version>0.4.0</version>
356356
</dependency>
357357
```
358358

359359
Gradle:
360360

361361
```groovy
362-
implementation 'com.softwaremill.jox:structured:0.3.1'
362+
implementation 'com.softwaremill.jox:structured:0.4.0'
363363
```
364364

365365
### Usage

bench/bench-java/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.softwaremill.jox</groupId>
88
<artifactId>bench</artifactId>
9-
<version>0.3.1</version>
9+
<version>0.4.0</version>
1010
</parent>
1111

1212
<artifactId>bench-java</artifactId>
13-
<version>0.3.1</version>
13+
<version>0.4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<build>

bench/bench-kotlin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.softwaremill.jox</groupId>
88
<artifactId>bench</artifactId>
9-
<version>0.3.1</version>
9+
<version>0.4.0</version>
1010
</parent>
1111

1212
<artifactId>bench-kotlin</artifactId>
13-
<version>0.3.1</version>
13+
<version>0.4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<properties>

bench/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<parent>
99
<groupId>com.softwaremill.jox</groupId>
1010
<artifactId>parent</artifactId>
11-
<version>0.3.1</version>
11+
<version>0.4.0</version>
1212
</parent>
1313

1414
<artifactId>bench</artifactId>
1515
<packaging>pom</packaging>
16-
<version>0.3.1</version>
16+
<version>0.4.0</version>
1717

1818
<modules>
1919
<module>bench-java</module>
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>com.softwaremill.jox</groupId>
4242
<artifactId>channels</artifactId>
43-
<version>0.3.1</version>
43+
<version>0.4.0</version>
4444
</dependency>
4545
</dependencies>
4646

channels/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.softwaremill.jox</groupId>
88
<artifactId>parent</artifactId>
9-
<version>0.3.1</version>
9+
<version>0.4.0</version>
1010
</parent>
1111

1212
<artifactId>channels</artifactId>
13-
<version>0.3.1</version>
13+
<version>0.4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

flows/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.softwaremill.jox</groupId>
88
<artifactId>parent</artifactId>
9-
<version>0.3.1</version>
9+
<version>0.4.0</version>
1010
</parent>
1111

1212
<artifactId>flows</artifactId>
13-
<version>0.3.1</version>
13+
<version>0.4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencyManagement>
@@ -29,12 +29,12 @@
2929
<dependency>
3030
<groupId>com.softwaremill.jox</groupId>
3131
<artifactId>channels</artifactId>
32-
<version>0.3.1</version>
32+
<version>0.4.0</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.softwaremill.jox</groupId>
3636
<artifactId>structured</artifactId>
37-
<version>0.3.1</version>
37+
<version>0.4.0</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>org.junit.jupiter</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<groupId>com.softwaremill.jox</groupId>
99
<artifactId>parent</artifactId>
1010
<packaging>pom</packaging>
11-
<version>0.3.1</version>
11+
<version>0.4.0</version>
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

structured/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
<parent>
77
<groupId>com.softwaremill.jox</groupId>
88
<artifactId>parent</artifactId>
9-
<version>0.3.1</version>
9+
<version>0.4.0</version>
1010
</parent>
1111

1212
<artifactId>structured</artifactId>
13-
<version>0.3.1</version>
13+
<version>0.4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>
1717
<dependency>
1818
<groupId>com.softwaremill.jox</groupId>
1919
<artifactId>channels</artifactId>
20-
<version>0.3.1</version>
20+
<version>0.4.0</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>org.junit.jupiter</groupId>

0 commit comments

Comments
 (0)