diff --git a/CHANGELOG.md b/CHANGELOG.md index bca08d2161..a29a2ef8e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,26 @@ # Change Log ## [Unreleased] -[Unreleased]: https://github.com/cashapp/redwood/compare/0.12.0...HEAD +[Unreleased]: https://github.com/cashapp/redwood/compare/0.13.0...HEAD + +New: +- Nothing yet! + +Changed: +- Nothing yet! + +Fixed: +- Nothing yet! + + +## [0.13.0] - 2024-07-25 +[0.13.0]: https://github.com/cashapp/redwood/releases/tag/0.13.0 New: - Wasm JS added as a target for common Redwood modules. There is no Treehouse support today. - Add `onScroll` property to `Row` and `Column`. This property is invoked when `overflow = Overflow.Scroll` and the container is scrolled. - Add `Px` class to represent a raw pixel value in the host's coordinate system. +- New source-based schema parser can be enabled with `redwood { useFir = true }` in your schema module. Please report and failures to the issue tracker. This parser will become the default in 0.14.0. Changed: - The `TreehouseApp` type is now an abstract class. This should make it easier to write unit tests for code that integrates Treehouse. @@ -21,13 +35,11 @@ Fixed: Breaking: - The `TreehouseApp.Factory.dispatchers` property is removed, and callers should migrate to `TreehouseApp.dispatchers`. With this update each `TreehouseApp` has its own private thread so a shared `dispatchers` property no longer fits our implementation. + -`TreehouseApp.Spec.bindServices()` now accepts a `TreehouseApp` parameter. Upgraded: - Zipline 1.16.0 -Breaking: - -`TreehouseApp.Spec.bindServices()` now accepts a `TreehouseApp` parameter. - ## [0.12.0] - 2024-06-18 [0.12.0]: https://github.com/cashapp/redwood/releases/tag/0.12.0 diff --git a/build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt b/build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt index c63e2b1489..9b86d9bd5f 100644 --- a/build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt +++ b/build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt @@ -69,7 +69,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile private const val REDWOOD_GROUP_ID = "app.cash.redwood" // HEY! If you change the major version update release.yaml doc folder. -private const val REDWOOD_VERSION = "0.13.0-SNAPSHOT" +private const val REDWOOD_VERSION = "0.13.0" private val isCiEnvironment = System.getenv("CI") == "true"