From 4919d3513a7d027994efa6271223facd35ecefb2 Mon Sep 17 00:00:00 2001 From: Isaac Udy Date: Thu, 30 May 2024 22:25:19 +1200 Subject: [PATCH] Updated version numbers to 2.6.0 --- CHANGELOG.md | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fc0caa9..139bbb1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 2.6.0 * Added `isManuallyStarted` to the `registerForFlowResult` API, which allows for the flow to be started manually with a call to `update` rather than performing this automatically when the flow is created. * Added `async` to `NavigationFlowScope`, which allows the execution of suspending lambdas as part of the steps in a flow. diff --git a/README.md b/README.md index 7d84bdd9..027e9f25 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ Enro is published to [Maven Central](https://search.maven.org/). Make sure your ```kotlin dependencies { - implementation("dev.enro:enro:2.4.1") - ksp("dev.enro:enro-processor:2.4.1") // both kapt and ksp are supported - testImplementation("dev.enro:enro-test:2.4.1") + implementation("dev.enro:enro:2.6.0") + ksp("dev.enro:enro-processor:2.6.0") // both kapt and ksp are supported + testImplementation("dev.enro:enro-test:2.6.0") } ```