Skip to content

Commit

Permalink
Prepare version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed May 15, 2024
1 parent 415a8d0 commit d088fd4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
23 changes: 20 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
# Change Log

## [Unreleased]
[Unreleased]: https://github.com/cashapp/redwood/compare/0.10.0...HEAD
[Unreleased]: https://github.com/cashapp/redwood/compare/0.11.0...HEAD

New:
- Added `toDebugString` method for `WidgetValue` and `List<WidgetValue>` which returns a formatted String of a widget's children and properties, useful for test debugging.
- Nothing yet!

Changed:
- Nothing yet!

Fixed:
- Nothing yet!


## [0.11.0] - 2024-05-15
[0.11.0]: https://github.com/cashapp/redwood/releases/tag/0.11.0

New:
- Added `toDebugString` method for `WidgetValue` and `List<WidgetValue>` which returns a formatted string of a widget's children and properties, useful for test debugging.

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

Upgraded:
- Zipline 1.9.0.
- Zipline 1.10.1.

This version works with Kotlin 1.9.24 by default.


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

This version works with Kotlin 1.9.23 by default.


## [0.9.0] - 2024-02-28
[0.9.0]: https://github.com/cashapp/redwood/releases/tag/0.9.0
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ certain versions of Kotlin.

| Kotlin | Redwood |
|--------|---------------|
| 1.9.24 | 0.11.0 |
| 1.9.23 | 0.10.0 |
| 1.9.22 | 0.8.0 - 0.9.0 |
| 1.9.10 | 0.7.0 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,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.11.0-SNAPSHOT"
private const val REDWOOD_VERSION = "0.11.0"

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

0 comments on commit d088fd4

Please sign in to comment.