Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amaembo committed Nov 7, 2021
1 parent 3fbbc3d commit e24a077
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# StreamEx 0.7.3
# StreamEx 0.8.0
Enhancing Java Stream API.

[![Maven Central](https://img.shields.io/maven-central/v/one.util/streamex.svg)](https://maven-badges.herokuapp.com/maven-central/one.util/streamex/)
Expand All @@ -9,7 +9,7 @@ Enhancing Java Stream API.
This library defines four classes: `StreamEx`, `IntStreamEx`, `LongStreamEx`, `DoubleStreamEx`
which are fully compatible with Java 8 stream classes and provide many additional useful methods.
Also `EntryStream` class is provided which represents the stream of map entries and provides
additional functionality for this case. Finally there are some new useful collectors defined in `MoreCollectors`
additional functionality for this case. Finally, there are some new useful collectors defined in `MoreCollectors`
class as well as primitive collectors concept.

Full API documentation is available [here](http://amaembo.github.io/streamex/javadoc/).
Expand Down Expand Up @@ -133,7 +133,7 @@ Add this snippet to the pom.xml `dependencies` section:
<dependency>
<groupId>one.util</groupId>
<artifactId>streamex</artifactId>
<version>0.7.3</version>
<version>0.8.0</version>
</dependency>
```

Expand All @@ -142,7 +142,7 @@ Add this snippet to the pom.xml `dependencies` section:
Add this snippet to the build.gradle `dependencies` section:

```groovy
implementation 'one.util:streamex:0.7.3'
implementation 'one.util:streamex:0.8.0'
```

Pull requests are welcome.
2 changes: 1 addition & 1 deletion benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>one.util</groupId>
<artifactId>streamex-benchmark</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>one.util</groupId>
<artifactId>streamex</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<packaging>multi-release-jar</packaging>

<name>StreamEx</name>
Expand Down

0 comments on commit e24a077

Please sign in to comment.