Skip to content

Commit d088fd4

Browse files
committed
Prepare version 0.11.0
1 parent 415a8d0 commit d088fd4

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

CHANGELOG.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
# Change Log
22

33
## [Unreleased]
4-
[Unreleased]: https://github.com/cashapp/redwood/compare/0.10.0...HEAD
4+
[Unreleased]: https://github.com/cashapp/redwood/compare/0.11.0...HEAD
55

66
New:
7-
- Added `toDebugString` method for `WidgetValue` and `List<WidgetValue>` which returns a formatted String of a widget's children and properties, useful for test debugging.
7+
- Nothing yet!
8+
9+
Changed:
10+
- Nothing yet!
11+
12+
Fixed:
13+
- Nothing yet!
14+
15+
16+
## [0.11.0] - 2024-05-15
17+
[0.11.0]: https://github.com/cashapp/redwood/releases/tag/0.11.0
18+
19+
New:
20+
- Added `toDebugString` method for `WidgetValue` and `List<WidgetValue>` which returns a formatted string of a widget's children and properties, useful for test debugging.
821

922
Changed:
1023
- Removed generated `typealias`es for package names which changed in 0.10.0.
@@ -19,7 +32,9 @@ Fixed:
1932
- In `YogaUIView`'s `layoutNodes` method, return early for nested `YogaUIView`s to prevent redundant frame calculations.
2033

2134
Upgraded:
22-
- Zipline 1.9.0.
35+
- Zipline 1.10.1.
36+
37+
This version works with Kotlin 1.9.24 by default.
2338

2439

2540
## [0.10.0] - 2024-04-05
@@ -61,6 +76,8 @@ Fixed:
6176
- Ensure that Zipline services are not closed prematurely when disposing a Treehouse UI.
6277
- In `UIViewLazyList`, don't remove subviews from hierarchy during `prepareForReuse` call
6378

79+
This version works with Kotlin 1.9.23 by default.
80+
6481

6582
## [0.9.0] - 2024-02-28
6683
[0.9.0]: https://github.com/cashapp/redwood/releases/tag/0.9.0

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ certain versions of Kotlin.
159159

160160
| Kotlin | Redwood |
161161
|--------|---------------|
162+
| 1.9.24 | 0.11.0 |
162163
| 1.9.23 | 0.10.0 |
163164
| 1.9.22 | 0.8.0 - 0.9.0 |
164165
| 1.9.10 | 0.7.0 |

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

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

5757
// HEY! If you change the major version update release.yaml doc folder.
58-
private const val REDWOOD_VERSION = "0.11.0-SNAPSHOT"
58+
private const val REDWOOD_VERSION = "0.11.0"
5959

6060
@Suppress("unused") // Invoked reflectively by Gradle.
6161
class RedwoodBuildPlugin : Plugin<Project> {

0 commit comments

Comments
 (0)