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

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-zobel committed May 26, 2019
1 parent 812e173 commit a6d80ce
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,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/en/products/proguard/manual/gradleplugin),
especially the section titled "Java 8 stream API support").

The current stable release of streamsupport is `streamsupport-1.7.0`.
The current stable release of streamsupport is `streamsupport-1.7.1`.

Want also lambdas? https://github.com/orfjackal/retrolambda

Expand All @@ -54,7 +54,7 @@ Please give feedback [here](https://github.com/stefan-zobel/streamsupport/issues

```gradle
dependencies {
compile 'net.sourceforge.streamsupport:streamsupport:1.7.0'
compile 'net.sourceforge.streamsupport:streamsupport:1.7.1'
}
```

Expand All @@ -65,7 +65,7 @@ dependencies {
<dependency>
<groupId>net.sourceforge.streamsupport</groupId>
<artifactId>streamsupport</artifactId>
<version>1.7.0</version>
<version>1.7.1</version>
</dependency>
```

Expand Down
21 changes: 20 additions & 1 deletion Readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
RELEASE NOTES

- "1.7.0-stable" is the current stable release
- "1.7.1-stable" is the current stable release


GENERAL
Expand Down Expand Up @@ -82,6 +82,9 @@ GENERAL
from Java 12, especially a new merging Collector (JDK-8205461) and new
exception handling methods for CompletableFuture (JDK-8210971).

- Release 1.7.1 completes the Java 12 port and adds some improvements and
bug fixes from Java 13.



KNOWN PROBLEMS
Expand Down Expand Up @@ -145,6 +148,22 @@ KNOWN PROBLEMS

VERSION HISTORY

1.7.1-stable (2019-05-26)
- Completed Java 12 port, integrated improvements from Java 13
- JDK-8215995: Add toArray() methods to immutable collections
- JDK-8221921: Implement size() / isEmpty() in immutable collections
- JDK-8214761: Bug in parallel Kahan summation
- JDK-8221924: Unmodifiable Map with one entry returns null
- JDK-8221981: Simplify Map/List/Set.of() implementation
- JDK-8221980: Simplify Optional implementation
- JDK-8215359: setContextClassLoader() needlessly throws
- JDK-8211283: Misc. changes imported from jsr166 CVS 2018-11
- JDK-8219138: Misc. changes imported from jsr166 CVS 2019-05
- JDK-8223112: Clarify semantics of java.util.Objects.equals
- JDK-8223379: Clarify ForkJoinPool.getStealCount() Javadoc
- JDK-8213238: Erroneous Javadoc in MatchOps.MatchKind
- Test on Java 13 (early access) [#396]

1.7.0-stable (2018-11-11)
- Completed Java 11 port, new methods from Java 12
- JDK-8205461: Create a merging Collector
Expand Down

0 comments on commit a6d80ce

Please sign in to comment.