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") } ```