File tree Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 3
3
## [ Unreleased]
4
4
5
5
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
+
6
18
## [ 0.5.0] - 2022-10-13
7
19
8
20
New:
@@ -79,7 +91,8 @@ Initial release
79
91
80
92
81
93
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
83
96
[ 0.5.0 ] : https://github.com/cashapp/molecule/releases/tag/0.5.0
84
97
[ 0.5.0-beta01 ] : https://github.com/cashapp/molecule/releases/tag/0.5.0-beta01
85
98
[ 0.4.0 ] : https://github.com/cashapp/molecule/releases/tag/0.4.0
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ buildscript {
171
171
mavenCentral()
172
172
}
173
173
dependencies {
174
- classpath 'app.cash.molecule:molecule-gradle-plugin:0.5 .0'
174
+ classpath 'app.cash.molecule:molecule-gradle-plugin:0.6 .0'
175
175
}
176
176
}
177
177
@@ -191,7 +191,7 @@ buildscript {
191
191
}
192
192
}
193
193
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'
195
195
}
196
196
}
197
197
Original file line number Diff line number Diff line change 1
1
# Releasing
2
2
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.
4
4
5
5
2 . Update the ` CHANGELOG.md ` :
6
6
1 . Change the ` Unreleased ` header to the release version.
Original file line number Diff line number Diff line change 1
1
GROUP =app.cash.molecule
2
2
3
3
# 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
5
5
6
6
POM_DESCRIPTION =Build a Flow or Observable stream using Jetpack Compose.
7
7
You can’t perform that action at this time.
0 commit comments