Skip to content

Commit

Permalink
Prepared release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Nov 28, 2019
1 parent 17169ab commit 1fe6991
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
= Functional Utils
:toc:
:toc-placement: preamble
:functionalversion: 2.0.1
:functionalversion: 2.1.0
ifdef::env-github,env-gitbucket[:outfilesuffix: .adoc]
ifndef::env-asciidoclet[:srcdir: src/main/java/]
ifdef::env-asciidoclet[:srcdir:]
Expand Down Expand Up @@ -34,6 +34,7 @@ link:{srcdir}de/tototec/utils/functional/Procedure4{javasuffix}[`Procedure4`] -
* link:{srcdir}de/tototec/utils/functional/Either{javasuffix}[`Either`] - An immutable class representing either one of two values
* link:{srcdir}de/tototec/utils/functional/Tuple2{javasuffix}[`Tuple2`], link:{srcdir}de/tototec/utils/functional/Tuple3{javasuffix}[`Tuple3`], ... - Classes representing tuples with n args where n is given by the name
* link:{srcdir}de/tototec/utils/functional/Try{javasuffix}[`Try`] - An experimental wrapper around computations, that may throw exceptions
* link:{srcdir}de/tototec/utils/functional/CanEqualsSupport{javasuffix}[`CanEqualsSupport`] - An helper class to produce proper `equals` and `hashCode` methods.

All those classes and interfaces can be used with Java 5 and above. Although by their use, your code will not get more compact, but hopefully less errorprone.

Expand Down Expand Up @@ -186,6 +187,10 @@ This can be achieved with the http://mojo.codehaus.org/animal-sniffer-maven-plug

== Changelog

=== 2.1.0 - 2019-11-28

* Added `CanEqualsSupport` to create proper `equals` and `hashCode` methods.

=== 2.0.1 - 2019-04-11

* Fixed a logic error in `Try.failure`
Expand Down
2 changes: 1 addition & 1 deletion pom.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.sonatype.maven.polyglot.scala.model._
import scala.collection.immutable.Seq

val gav = "de.tototec" % "de.tototec.utils.functional" % "2.0.2-SNAPSHOT"
val gav = "de.tototec" % "de.tototec.utils.functional" % "2.1.0"
val url = "https://github.com/ToToTec/de.tototec.utils.functional"

object Deps {
Expand Down

0 comments on commit 1fe6991

Please sign in to comment.