diff --git a/CHANGELOG.md b/CHANGELOG.md index c78c5ca..b7d5a5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,14 @@ # Change Log -## [Unreleased] -* Backport traverse functions on Either, Iterable and Option (Andrew Parker) -* Backport traverse functions on Sequence, Map and Ior (Andrew Parker) +## [0.5.4] - 2024-05-21 ### Added * Adds `T.success()` as a shorthand for creating a success `Result` (Jem Mawson) * Adds `.failure()` as a shorthand for creating a failure `Result` (Jem Mawson) +* Adds `T.toResult()` as a shorthand for converting nullable types to `Result` (Alejandro Metke) +* Ads `Result.mapFailure()` to enable mapping the failure in a result to a different `Throwable` (Alejandro Metke) +* Backport traverse functions on Either, Iterable and Option (Andrew Parker) +* Backport traverse functions on Sequence, Map and Ior (Andrew Parker) ## [0.5.3] - 2024-05-09 diff --git a/gradle.properties b/gradle.properties index 147b9aa..aed6811 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=app.cash.quiver -VERSION_NAME=0.5.3 +VERSION_NAME=0.5.4 POM_URL=https://github.com/cashapp/quiver/ POM_SCM_URL=https://github.com/cashapp/quiver/ POM_SCM_CONNECTION=scm:git:git://github.com/cashapp/quiver.git