Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Release 1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-zobel committed Sep 19, 2021
1 parent a36de70 commit 6332e13
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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'
}
```

Expand All @@ -66,7 +66,7 @@ dependencies {
<dependency>
<groupId>net.sourceforge.streamsupport</groupId>
<artifactId>streamsupport</artifactId>
<version>1.7.3</version>
<version>1.7.4</version>
</dependency>
```

Expand All @@ -78,7 +78,7 @@ Contains streamsupport core + atomic + cfuture + flow
<dependency>
<groupId>net.sourceforge.streamsupport</groupId>
<artifactId>streamsupport_all</artifactId>
<version>1.7.3.2</version>
<version>1.7.4</version>
</dependency>
```

Expand Down
15 changes: 14 additions & 1 deletion Readme.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 6332e13

Please sign in to comment.