Skip to content

Commit 0ac8504

Browse files
committed
Prepare version 0.9.0
1 parent 43e28ee commit 0ac8504

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,33 @@
11
# Change Log
22

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

66
New:
7+
-
8+
9+
Changed:
10+
-
11+
12+
Fixed:
13+
-
14+
15+
16+
## [0.9.0] - 2024-02-28
17+
[0.9.0]: https://github.com/cashapp/redwood/releases/tag/0.9.0
718

819
Changed:
920
- Added `Modifier` parameter to `RedwoodContent` which is applied to the root `Box` into which content is rendered (https://android.googlesource.com/platform/frameworks/support/+/androidx-main/compose/docs/compose-api-guidelines.md#elements-accept-and-respect-a-modifier-parameter).
1021
- The parameter order of `LazyRow` and `LazyColumn` have changed to reflect Compose best practices (https://android.googlesource.com/platform/frameworks/support/+/androidx-main/compose/docs/compose-api-guidelines.md#elements-accept-and-respect-a-modifier-parameter).
1122
- The parameter order of `TreehouseContent` has changed to reflect Compose best practices (https://android.googlesource.com/platform/frameworks/support/+/androidx-main/compose/docs/compose-api-guidelines.md#elements-accept-and-respect-a-modifier-parameter).
1223
- The render function of `ComposeWidgetChildren` has been renamed to `Render` to reflect Compose best practices (https://android.googlesource.com/platform/frameworks/support/+/androidx-main/compose/docs/compose-api-guidelines.md#naming-unit-composable-functions-as-entities).
24+
- Disable decoy generation for JS target to make compatible with JetBrains Compose 1.6. This is an ABI-breaking change, so all Compose-based libraries targeting JS will also need to have been recompiled.
1325

1426
Fixed:
1527
- Don't block touch events to non-subviews below a `Row`, `Column`, or `Box` in the iOS `UIView` implementation. This matches the behavior of the Android View and Compose UI implementations.
1628

29+
This version works with Kotlin 1.9.22 by default.
30+
1731

1832
## [0.8.0] - 2024-02-22
1933
[0.8.0]: https://github.com/cashapp/redwood/releases/tag/0.8.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ certain versions of Kotlin.
159159

160160
| Kotlin | Redwood |
161161
|--------|---------------|
162-
| 1.9.22 | 0.8.0 |
162+
| 1.9.22 | 0.8.0 - 0.9.0 |
163163
| 1.9.10 | 0.7.0 |
164164
| 1.9.0 | 0.6.0 |
165165
| 1.8.22 | 0.5.0 |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
5050
private const val REDWOOD_GROUP_ID = "app.cash.redwood"
5151

5252
// HEY! If you change the major version update release.yaml doc folder.
53-
private const val REDWOOD_VERSION = "0.9.0-SNAPSHOT"
53+
private const val REDWOOD_VERSION = "0.9.0"
5454

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

0 commit comments

Comments
 (0)