Skip to content

Commit b4893e2

Browse files
committed
Prepare version 0.3.0
1 parent 197da77 commit b4893e2

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
## [Unreleased]
44

55

6+
## [0.3.0] - 2022-07-27
7+
8+
New:
9+
10+
- 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).
11+
- Update to Compose compiler 1.2.0 which supports Kotlin 1.7.0.
12+
- 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.
13+
- 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).
14+
15+
616
## [0.2.0] - 2022-02-09
717

818
New:
@@ -20,6 +30,7 @@ Initial release
2030

2131

2232

23-
[Unreleased]: https://github.com/cashapp/molecule/compare/0.2.0...HEAD
33+
[Unreleased]: https://github.com/cashapp/molecule/compare/0.3.0...HEAD
34+
[0.3.0]: https://github.com/cashapp/molecule/releases/tag/0.3.0
2435
[0.2.0]: https://github.com/cashapp/molecule/releases/tag/0.2.0
2536
[0.1.0]: https://github.com/cashapp/molecule/releases/tag/0.1.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ buildscript {
171171
mavenCentral()
172172
}
173173
dependencies {
174-
classpath 'app.cash.molecule:molecule-gradle-plugin:0.2.0'
174+
classpath 'app.cash.molecule:molecule-gradle-plugin:0.3.0'
175175
}
176176
}
177177
@@ -191,7 +191,7 @@ buildscript {
191191
}
192192
}
193193
dependencies {
194-
classpath 'app.cash.molecule:molecule-gradle-plugin:0.3.0-SNAPSHOT'
194+
classpath 'app.cash.molecule:molecule-gradle-plugin:0.4.0-SNAPSHOT'
195195
}
196196
}
197197

molecule/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GROUP=app.cash.molecule
22

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

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

0 commit comments

Comments
 (0)