Skip to content

Commit d3b8ba2

Browse files
committed
Release 0.3.1
1 parent 0c801e6 commit d3b8ba2

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

README.md

Lines changed: 7 additions & 7 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.0</version>
50+
<version>0.3.1</version>
5151
</dependency>
5252
```
5353

5454
Gradle:
5555

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

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

239-
The test results for version 0.3.0, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:
239+
The test results for version 0.3.1, run on an M1 Max MacBook Pro, with Java 21.0.1, are as follows:
240240

241241
```
242242
Benchmark (capacity) (chainLength) (parallelism) Mode Cnt Score Error Units
@@ -332,14 +332,14 @@ Maven:
332332
<dependency>
333333
<groupId>com.softwaremill.jox</groupId>
334334
<artifactId>structured</artifactId>
335-
<version>0.3.0</version>
335+
<version>0.3.1</version>
336336
</dependency>
337337
```
338338

339339
Gradle:
340340

341341
```groovy
342-
implementation 'com.softwaremill.jox:structured:0.3.0'
342+
implementation 'com.softwaremill.jox:structured:0.3.1'
343343
```
344344

345345
### Usage
@@ -506,14 +506,14 @@ Maven:
506506
<dependency>
507507
<groupId>com.softwaremill.jox</groupId>
508508
<artifactId>channel-ops</artifactId>
509-
<version>0.3.0</version>
509+
<version>0.3.1</version>
510510
</dependency>
511511
```
512512

513513
Gradle:
514514

515515
```groovy
516-
implementation 'com.softwaremill.jox:channel-ops:0.3.0'
516+
implementation 'com.softwaremill.jox:channel-ops:0.3.1'
517517
```
518518

519519
### 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.0</version>
9+
<version>0.3.1</version>
1010
</parent>
1111

1212
<artifactId>bench-java</artifactId>
13-
<version>0.3.0</version>
13+
<version>0.3.1</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.0</version>
9+
<version>0.3.1</version>
1010
</parent>
1111

1212
<artifactId>bench-kotlin</artifactId>
13-
<version>0.3.0</version>
13+
<version>0.3.1</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.0</version>
11+
<version>0.3.1</version>
1212
</parent>
1313

1414
<artifactId>bench</artifactId>
1515
<packaging>pom</packaging>
16-
<version>0.3.0</version>
16+
<version>0.3.1</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.0</version>
43+
<version>0.3.1</version>
4444
</dependency>
4545
</dependencies>
4646

channel-ops/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.0</version>
9+
<version>0.3.1</version>
1010
</parent>
1111

1212
<artifactId>channel-ops</artifactId>
13-
<version>0.3.0</version>
13+
<version>0.3.1</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>
@@ -27,12 +27,12 @@
2727
<dependency>
2828
<groupId>com.softwaremill.jox</groupId>
2929
<artifactId>channels</artifactId>
30-
<version>0.3.0</version>
30+
<version>0.3.1</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>com.softwaremill.jox</groupId>
3434
<artifactId>structured</artifactId>
35-
<version>0.3.0</version>
35+
<version>0.3.1</version>
3636
</dependency>
3737
</dependencies>
3838
</project>

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.0</version>
9+
<version>0.3.1</version>
1010
</parent>
1111

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

1616
<dependencies>

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.0</version>
11+
<version>0.3.1</version>
1212

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

structured/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.0</version>
9+
<version>0.3.1</version>
1010
</parent>
1111

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

1616
<dependencies>

0 commit comments

Comments
 (0)