Skip to content

Commit

Permalink
Prepare version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jul 27, 2022
1 parent 197da77 commit b4893e2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
## [Unreleased]


## [0.3.0] - 2022-07-27

New:

- Enable Kotlin multiplatform usage on JVM and JS targets (in addition to Android). All native targets are blocked on JetBrains' Compose runtime supporting them (with a stable release).
- Update to Compose compiler 1.2.0 which supports Kotlin 1.7.0.
- Add `RecomposeClock` parameter to both `moleculeFlow` and `launchMolecule` which allows choosing between a frame-based clock for recomposition or a clock which immediately recomposes for any change.
- The 'molecule-testing' library is deprecated. The recommendation is to use the new immediate clock mode and [Turbine](https://github.com/cashapp/turbine/). If you have a use case which cannot be handled by this change please comment on [this issue](https://github.com/cashapp/molecule/issues/97).


## [0.2.0] - 2022-02-09

New:
Expand All @@ -20,6 +30,7 @@ Initial release



[Unreleased]: https://github.com/cashapp/molecule/compare/0.2.0...HEAD
[Unreleased]: https://github.com/cashapp/molecule/compare/0.3.0...HEAD
[0.3.0]: https://github.com/cashapp/molecule/releases/tag/0.3.0
[0.2.0]: https://github.com/cashapp/molecule/releases/tag/0.2.0
[0.1.0]: https://github.com/cashapp/molecule/releases/tag/0.1.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'app.cash.molecule:molecule-gradle-plugin:0.2.0'
classpath 'app.cash.molecule:molecule-gradle-plugin:0.3.0'
}
}
Expand All @@ -191,7 +191,7 @@ buildscript {
}
}
dependencies {
classpath 'app.cash.molecule:molecule-gradle-plugin:0.3.0-SNAPSHOT'
classpath 'app.cash.molecule:molecule-gradle-plugin:0.4.0-SNAPSHOT'
}
}
Expand Down
2 changes: 1 addition & 1 deletion molecule/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GROUP=app.cash.molecule

# HEY! If you change the major version here be sure to update release.yaml doc target folder!
VERSION_NAME=0.3.0-SNAPSHOT
VERSION_NAME=0.3.0

POM_DESCRIPTION=Build a Flow or Observable stream using Jetpack Compose.

Expand Down

0 comments on commit b4893e2

Please sign in to comment.