Skip to content

Commit 92cc2d7

Browse files
committed
Prepare version 0.13.0
1 parent 9a4d694 commit 92cc2d7

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

CHANGELOG.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
# Change Log
22

33
## [Unreleased]
4-
[Unreleased]: https://github.com/cashapp/redwood/compare/0.12.0...HEAD
4+
[Unreleased]: https://github.com/cashapp/redwood/compare/0.13.0...HEAD
5+
6+
New:
7+
- Nothing yet!
8+
9+
Changed:
10+
- Nothing yet!
11+
12+
Fixed:
13+
- Nothing yet!
14+
15+
16+
## [0.13.0] - 2024-07-25
17+
[0.13.0]: https://github.com/cashapp/redwood/releases/tag/0.13.0
518

619
New:
720
- Wasm JS added as a target for common Redwood modules. There is no Treehouse support today.
821
- Add `onScroll` property to `Row` and `Column`. This property is invoked when `overflow = Overflow.Scroll` and the container is scrolled.
922
- Add `Px` class to represent a raw pixel value in the host's coordinate system.
23+
- 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.
1024

1125
Changed:
1226
- 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:
2135

2236
Breaking:
2337
- 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.
38+
-`TreehouseApp.Spec.bindServices()` now accepts a `TreehouseApp` parameter.
2439

2540
Upgraded:
2641
- Zipline 1.16.0
2742

28-
Breaking:
29-
-`TreehouseApp.Spec.bindServices()` now accepts a `TreehouseApp` parameter.
30-
3143

3244
## [0.12.0] - 2024-06-18
3345
[0.12.0]: https://github.com/cashapp/redwood/releases/tag/0.12.0

build-support/src/main/kotlin/app/cash/redwood/buildsupport/RedwoodBuildPlugin.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
6969
private const val REDWOOD_GROUP_ID = "app.cash.redwood"
7070

7171
// HEY! If you change the major version update release.yaml doc folder.
72-
private const val REDWOOD_VERSION = "0.13.0-SNAPSHOT"
72+
private const val REDWOOD_VERSION = "0.13.0"
7373

7474
private val isCiEnvironment = System.getenv("CI") == "true"
7575

0 commit comments

Comments
 (0)