From 6332e13a69ad01630b03c487927d5cc65a05c421 Mon Sep 17 00:00:00 2001 From: stefan-zobel Date: Sun, 19 Sep 2021 20:13:59 +0200 Subject: [PATCH] Release 1.7.4 --- README.md | 8 ++++---- Readme.txt | 15 ++++++++++++++- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0eeb2503..0b8b24ca 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ most Java 8 language features and the latest release can also replace the standa streamsupport backport (cf. the Proguard [documentation](https://www.guardsquare.com/manual/languages/java), especially the section titled "Java 8 stream API support"). -The current stable release of streamsupport is `streamsupport-1.7.3`. +The current stable release of streamsupport is `streamsupport-1.7.4`. Want also lambdas? https://github.com/orfjackal/retrolambda @@ -55,7 +55,7 @@ Please give feedback [here](https://github.com/stefan-zobel/streamsupport/issues ```gradle dependencies { - implementation 'net.sourceforge.streamsupport:streamsupport:1.7.3' + implementation 'net.sourceforge.streamsupport:streamsupport:1.7.4' } ``` @@ -66,7 +66,7 @@ dependencies { net.sourceforge.streamsupport streamsupport - 1.7.3 + 1.7.4 ``` @@ -78,7 +78,7 @@ Contains streamsupport core + atomic + cfuture + flow net.sourceforge.streamsupport streamsupport_all - 1.7.3.2 + 1.7.4 ``` diff --git a/Readme.txt b/Readme.txt index 3e53557c..bc55707b 100644 --- a/Readme.txt +++ b/Readme.txt @@ -1,6 +1,6 @@ RELEASE NOTES - - "1.7.3-stable" is the current stable release + - "1.7.4-stable" is the current stable release GENERAL @@ -92,6 +92,8 @@ GENERAL - Release 1.7.3 completes the Java 16 port and adds two new Stream methods (multiMap and toList) introduced in Java 16. + - Release 1.7.4 adds some improvements from Java 17. + KNOWN PROBLEMS @@ -155,6 +157,17 @@ KNOWN PROBLEMS VERSION HISTORY +1.7.4-stable (2021-09-19) + - JDK-8265029: Preserve SIZED characteristics on slice operations (skip, limit) + - JDK-8267452: Delegate forEachRemaining in Spliterators.iterator + - JDK-8199318: add idempotent copy operation for Map.Entry + - JDK-8267939: Clarify the specification of forEachRemaining + - JDK-8271601: use x ^ y in the floorMod(int, int) test + - JDK-8268113: Reuse Long.hashCode() + - Implement Java 17 j.u.r.RandomGenerator methods + - Add new CompensatedSums test for JDK-8214761 + - Completed Java 17 port + 1.7.3-stable (2021-01-31) - JDK-8238286: Add new flatMap stream operation multiMap (Java 16) - JDK-8180352: Add Stream.toList() method (Java 16)