Skip to content

Commit 45f6a92

Browse files
committed
Release 1.1.2 of channels
1 parent 0b69eb2 commit 45f6a92

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ to change it only for scoped test runs.
109109

110110
## Copyright
111111

112-
Copyright (C) 2023-2025 SoftwareMill [https://softwaremill.com](https://softwaremill.com).
112+
Copyright (C) 2023-2026 SoftwareMill [https://softwaremill.com](https://softwaremill.com).

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>1.1.1</version>
9+
<version>1.1.2</version>
1010
</parent>
1111

1212
<artifactId>bench-java</artifactId>
13-
<version>1.1.1</version>
13+
<version>1.1.2</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>1.1.1</version>
9+
<version>1.1.2</version>
1010
</parent>
1111

1212
<artifactId>bench-kotlin</artifactId>
13-
<version>1.1.1</version>
13+
<version>1.1.2</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>1.1.1</version>
11+
<version>1.1.2</version>
1212
</parent>
1313

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

channels-fray-tests/pom.xml

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

1212
<artifactId>channels-fray-tests</artifactId>
13-
<version>1.1.1</version>
13+
<version>1.1.2</version>
1414
<packaging>jar</packaging>
1515
<name>${project.groupId}:${project.artifactId}</name>
1616

1717
<dependencies>
1818
<dependency>
1919
<groupId>com.softwaremill.jox</groupId>
2020
<artifactId>channels</artifactId>
21-
<version>1.1.1</version>
21+
<version>1.1.2</version>
2222
<scope>test</scope>
2323
</dependency>
2424
<dependency>

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>1.1.1</version>
9+
<version>1.1.2</version>
1010
</parent>
1111

1212
<artifactId>channels</artifactId>
13-
<version>1.1.1</version>
13+
<version>1.1.2</version>
1414
<packaging>jar</packaging>
1515
<name>${project.groupId}:${project.artifactId}</name>
1616

docs/channels.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Maven:
1717
<dependency>
1818
<groupId>com.softwaremill.jox</groupId>
1919
<artifactId>channels</artifactId>
20-
<version>1.1.1</version>
20+
<version>1.1.2</version>
2121
</dependency>
2222
```
2323

2424
Gradle:
2525

2626
```groovy
27-
implementation 'com.softwaremill.jox:channels:1.1.1'
27+
implementation 'com.softwaremill.jox:channels:1.1.2'
2828
```
2929

3030
## Buffered channel
@@ -280,7 +280,7 @@ the specified duration. It's guaranteed that this additional thread will be clea
280280
The project includes benchmarks implemented using JMH - both for the `Channel`, as well as for some built-in Java
281281
synchronisation primitives (queues), as well as the Kotlin channel implementation.
282282

283-
The test results for version 1.x, run on an M1 Max MacBook Pro, with Java 21.1.1, are as follows:
283+
The test results for version 1.x, run on an M1 Max MacBook Pro, with Java 21.1.2, are as follows:
284284

285285
```
286286
Benchmark (capacity) (chainLength) (parallelism) Mode Cnt Score Error Units

flows/pom.xml

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

1212
<artifactId>flows</artifactId>
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>com.softwaremill.jox</groupId>
7171
<artifactId>channels</artifactId>
72-
<version>1.1.1</version>
72+
<version>1.1.2</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>com.softwaremill.jox</groupId>

kafka/pom.xml

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

1212
<artifactId>kafka</artifactId>
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.softwaremill.jox</groupId>
2525
<artifactId>channels</artifactId>
26-
<version>1.1.1</version>
26+
<version>1.1.2</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.softwaremill.jox</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>1.1.1</version>
11+
<version>1.1.2</version>
1212

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

0 commit comments

Comments
 (0)