Skip to content

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
2bllw8 committed Oct 24, 2021
1 parent e366937 commit dce718f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ While `Either` is right–biased, it is possible to operate on the left values b
The latest release is available on [Maven Central](https://search.maven.org/artifact/io.github.2bllw8/either/2.0.0/jar).

```groovy
implementation 'io.github.2bllw8:either:2.1.0'
implementation 'io.github.2bllw8:either:2.2.0'
```

## Usage
Expand Down Expand Up @@ -52,7 +52,7 @@ public class Main {
// Map the right value to a MyObject instance
.map(magic::doSomeMagic)
.forEach(leftVal -> System.err.println(
"E: " + arg + ": " + leftVal),
"E: " + arg + ": " + leftVal),
rightVal -> System.out.println(
arg + " -> " + rightVal));
}
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {

archivesBaseName = rootProject.name
group = 'exe.bbllw8'
version = '2.1.0'
version = '2.2.0'

java {
withJavadocJar()
Expand Down

0 comments on commit dce718f

Please sign in to comment.