Skip to content

Commit 9b8eee0

Browse files
committed
Prepare version 0.6.0
1 parent d1afa05 commit 9b8eee0

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

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

55

6+
## [0.6.0] - 2022-11-08
7+
8+
New:
9+
- Support for Kotlin 1.7.20
10+
- Update to JetBrains Compose runtime 1.2.1 (AndroidX Compose runtime 1.2.1).
11+
- Switch to JetBrains Compose compiler 1.3.2.1 (AndroidX Compose compiler 1.3.2 + JS fix)
12+
13+
Fixed:
14+
- When applying the Compose compiler plugin to Kotlin/JS targets, ensure decoys are used.
15+
- Add `cacheKind=none` Gradle configuration which ensures downstream Kotlin/Native projects can link.
16+
17+
618
## [0.5.0] - 2022-10-13
719

820
New:
@@ -79,7 +91,8 @@ Initial release
7991

8092

8193

82-
[Unreleased]: https://github.com/cashapp/molecule/compare/0.5.0...HEAD
94+
[Unreleased]: https://github.com/cashapp/molecule/compare/0.6.0...HEAD
95+
[0.6.0]: https://github.com/cashapp/molecule/releases/tag/0.6.0
8396
[0.5.0]: https://github.com/cashapp/molecule/releases/tag/0.5.0
8497
[0.5.0-beta01]: https://github.com/cashapp/molecule/releases/tag/0.5.0-beta01
8598
[0.4.0]: https://github.com/cashapp/molecule/releases/tag/0.4.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.5.0'
174+
classpath 'app.cash.molecule:molecule-gradle-plugin:0.6.0'
175175
}
176176
}
177177
@@ -191,7 +191,7 @@ buildscript {
191191
}
192192
}
193193
dependencies {
194-
classpath 'app.cash.molecule:molecule-gradle-plugin:0.6.0-SNAPSHOT'
194+
classpath 'app.cash.molecule:molecule-gradle-plugin:0.7.0-SNAPSHOT'
195195
}
196196
}
197197

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releasing
22

3-
1. Update the `VERSION_NAME` in `molecule/gradle.properties` to the release version.
3+
1. Update the `VERSION_NAME` in `gradle.properties` to the release version.
44

55
2. Update the `CHANGELOG.md`:
66
1. Change the `Unreleased` header to the release version.

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.6.0-SNAPSHOT
4+
VERSION_NAME=0.6.0
55

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

0 commit comments

Comments
 (0)