From dce718f2913d56736d54a774705ae913ab5ae955 Mon Sep 17 00:00:00 2001 From: 2bllw8 <2bllw8@gmail.com> Date: Sun, 24 Oct 2021 16:43:14 +0200 Subject: [PATCH] Version 2.2.0 --- README.md | 4 ++-- lib/build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6ebffb5..699fb12 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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)); } diff --git a/lib/build.gradle b/lib/build.gradle index 04659e4..c88144e 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -19,7 +19,7 @@ dependencies { archivesBaseName = rootProject.name group = 'exe.bbllw8' -version = '2.1.0' +version = '2.2.0' java { withJavadocJar()