Skip to content

Commit c79224f

Browse files
committed
+ dep versions bump
1 parent ef6bb34 commit c79224f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<modelVersion>4.0.0</modelVersion>
2828
<groupId>io.github.q3769</groupId>
2929
<artifactId>conseq4j</artifactId>
30-
<version>20231102.0.20240820-SNAPSHOT</version>
30+
<version>20231102.0.20250313</version>
3131
<packaging>jar</packaging>
3232
<name>conseq4j</name>
3333
<description>A Java concurrent API to sequence related tasks while concurring unrelated ones</description>
@@ -204,47 +204,47 @@
204204
<dependency>
205205
<groupId>io.github.q3769</groupId>
206206
<artifactId>coco4j</artifactId>
207-
<version>10.1.0</version>
207+
<version>12.0.0</version>
208208
</dependency>
209209
<dependency>
210210
<groupId>org.projectlombok</groupId>
211211
<artifactId>lombok</artifactId>
212-
<version>1.18.32</version>
212+
<version>1.18.36</version>
213213
<scope>provided</scope>
214214
</dependency>
215215
<dependency>
216216
<groupId>org.junit.jupiter</groupId>
217217
<artifactId>junit-jupiter-api</artifactId>
218-
<version>5.10.0</version>
218+
<version>5.12.0</version>
219219
<scope>test</scope>
220220
</dependency>
221221
<dependency>
222222
<groupId>org.junit.jupiter</groupId>
223223
<artifactId>junit-jupiter-params</artifactId>
224-
<version>5.10.0</version>
224+
<version>5.12.0</version>
225225
<scope>test</scope>
226226
</dependency>
227227
<dependency>
228228
<groupId>org.junit.jupiter</groupId>
229229
<artifactId>junit-jupiter-engine</artifactId>
230-
<version>5.10.0</version>
230+
<version>5.12.0</version>
231231
<scope>test</scope>
232232
</dependency>
233233
<dependency>
234234
<groupId>org.awaitility</groupId>
235235
<artifactId>awaitility</artifactId>
236-
<version>4.2.1</version>
236+
<version>4.3.0</version>
237237
</dependency>
238238
<dependency>
239239
<groupId>com.google.guava</groupId>
240240
<artifactId>guava</artifactId>
241-
<version>33.2.0-jre</version>
241+
<version>33.4.0-jre</version>
242242
<scope>test</scope>
243243
</dependency>
244244
<dependency>
245245
<groupId>org.mockito</groupId>
246246
<artifactId>mockito-core</artifactId>
247-
<version>5.14.2</version>
247+
<version>5.16.0</version>
248248
<scope>test</scope>
249249
</dependency>
250250
</dependencies>

src/main/java/conseq4j/execute/ConseqExecutor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
import static coco4j.Tasks.callUnchecked;
2828

29-
import coco4j.DefensiveFuture;
29+
import coco4j.MinimalisticFuture;
3030
import conseq4j.Terminable;
3131
import java.util.List;
3232
import java.util.Map;
@@ -160,7 +160,7 @@ private ConseqExecutor(ExecutorService workerExecutorService) {
160160
(r, e) -> executionQueues.computeIfPresent(
161161
sequenceKey, (k, vCompletable) -> vCompletable.isDone() ? null : vCompletable),
162162
adminExecutorService);
163-
return (Future<T>) new DefensiveFuture<>(copy);
163+
return (Future<T>) new MinimalisticFuture<>(copy);
164164
}
165165

166166
/** Orderly shutdown, and awaits thread pool termination. */

0 commit comments

Comments
 (0)