File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 3
3
## [ Unreleased]
4
4
5
5
6
+ ## [ 0.4.0] - 2022-08-10
7
+
8
+ New:
9
+
10
+ - Update to Compose compiler 1.3.0 which supports Kotlin 1.7.10.
11
+
12
+ Fixed:
13
+
14
+ - Prevent "Trying to call 'getOrThrow' on a failed channel result: Failed" exceptions when using the immediate recompose clock.
15
+
16
+
6
17
## [ 0.4.0-beta01] - 2022-07-27
7
18
8
19
New:
9
20
10
21
- Update to Compose compiler 1.3.0-beta01 which supports Kotlin 1.7.10.
11
22
12
23
24
+ ## [ 0.3.1] - 2022-08-10
25
+
26
+ Fixed:
27
+
28
+ - Prevent "Trying to call 'getOrThrow' on a failed channel result: Failed" exceptions when using the immediate recompose clock.
29
+
30
+
13
31
## [ 0.3.0] - 2022-07-27
14
32
15
33
New:
@@ -37,7 +55,10 @@ Initial release
37
55
38
56
39
57
40
- [ Unreleased ] : https://github.com/cashapp/molecule/compare/0.3.0...HEAD
58
+ [ Unreleased ] : https://github.com/cashapp/molecule/compare/0.4.0...HEAD
59
+ [ 0.4.0 ] : https://github.com/cashapp/molecule/releases/tag/0.4.0
60
+ [ 0.4.0-beta01 ] : https://github.com/cashapp/molecule/releases/tag/0.4.0-beta01
61
+ [ 0.3.1 ] : https://github.com/cashapp/molecule/releases/tag/0.3.1
41
62
[ 0.3.0 ] : https://github.com/cashapp/molecule/releases/tag/0.3.0
42
63
[ 0.2.0 ] : https://github.com/cashapp/molecule/releases/tag/0.2.0
43
64
[ 0.1.0 ] : https://github.com/cashapp/molecule/releases/tag/0.1.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.3 .0'
174
+ classpath 'app.cash.molecule:molecule-gradle-plugin:0.4 .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.4 .0-SNAPSHOT'
194
+ classpath 'app.cash.molecule:molecule-gradle-plugin:0.5 .0-SNAPSHOT'
195
195
}
196
196
}
197
197
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.4.0-SNAPSHOT
4
+ VERSION_NAME =0.4.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