Skip to content

Commit

Permalink
Prepare version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jul 25, 2024
1 parent 9a4d694 commit 92cc2d7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 92cc2d7

Please sign in to comment.