File tree Expand file tree Collapse file tree 4 files changed +23
-17
lines changed Expand file tree Collapse file tree 4 files changed +23
-17
lines changed Original file line number Diff line number Diff line change 39
39
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40
40
BRANCH : site
41
41
FOLDER : build/dokka/htmlMultiModule
42
- TARGET_FOLDER : docs/0 .x/
42
+ TARGET_FOLDER : docs/1 .x/
43
43
CLEAN : true
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+
6
+ ## [ 1.0.0] - 2023-07-19
7
+
5
8
Changed:
6
9
- ` RecompositionClock ` is now named ` RecompositionMode ` to better reflect that it is not itself the clock,
7
10
but the mode by which Molecule will perform recomposition. A clock is always used internally as that is the
8
11
underlying mechanism of Compose.
12
+ - Darwin frame clock and the internal frame clock used with ` RecompositionMode.Immediate ` now correctly
13
+ send actual frame times.
9
14
10
15
11
16
## [ 0.11.0] - 2023-06-30
@@ -149,7 +154,8 @@ Initial release
149
154
150
155
151
156
152
- [ Unreleased ] : https://github.com/cashapp/molecule/compare/0.11.0...HEAD
157
+ [ Unreleased ] : https://github.com/cashapp/molecule/compare/1.0.0...HEAD
158
+ [ 1.0.0 ] : https://github.com/cashapp/molecule/releases/tag/1.0.0
153
159
[ 0.11.0 ] : https://github.com/cashapp/molecule/releases/tag/0.11.0
154
160
[ 0.10.0 ] : https://github.com/cashapp/molecule/releases/tag/0.10.0
155
161
[ 0.9.0 ] : https://github.com/cashapp/molecule/releases/tag/0.9.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.11 .0'
174
+ classpath 'app.cash.molecule:molecule-gradle-plugin:1.0 .0'
175
175
}
176
176
}
177
177
@@ -181,18 +181,18 @@ apply plugin: 'app.cash.molecule'
181
181
Since Kotlin compiler plugins are an unstable API, certain versions of Molecule only work with
182
182
certain versions of Kotlin.
183
183
184
- | Kotlin | Molecule |
185
- | --------| ---------------|
186
- | 1.8.22 | 0.11.0 |
187
- | 1.8.21 | 0.10.0 |
188
- | 1.8.20 | 0.9.0 |
189
- | 1.8.10 | 0.8.0 |
190
- | 1.8.0 | 0.7.0 - 0.7.1 |
191
- | 1.7.20 | 0.6.0 - 0.6.1 |
192
- | 1.7.10 | 0.4.0 - 0.5.0 |
193
- | 1.7.0 | 0.3.0 - 0.3.1 |
194
- | 1.6.10 | 0.2.0 |
195
- | 1.5.31 | 0.1.0 |
184
+ | Kotlin | Molecule |
185
+ | --------| ---------------- |
186
+ | 1.8.22 | 0.11.0 - 1.0.0 |
187
+ | 1.8.21 | 0.10.0 |
188
+ | 1.8.20 | 0.9.0 |
189
+ | 1.8.10 | 0.8.0 |
190
+ | 1.8.0 | 0.7.0 - 0.7.1 |
191
+ | 1.7.20 | 0.6.0 - 0.6.1 |
192
+ | 1.7.10 | 0.4.0 - 0.5.0 |
193
+ | 1.7.0 | 0.3.0 - 0.3.1 |
194
+ | 1.6.10 | 0.2.0 |
195
+ | 1.5.31 | 0.1.0 |
196
196
197
197
<details >
198
198
<summary >Snapshots of the development version are available in Sonatype's snapshots repository.</summary >
@@ -207,7 +207,7 @@ buildscript {
207
207
}
208
208
}
209
209
dependencies {
210
- classpath 'app.cash.molecule:molecule-gradle-plugin:0.12 .0-SNAPSHOT'
210
+ classpath 'app.cash.molecule:molecule-gradle-plugin:1.1 .0-SNAPSHOT'
211
211
}
212
212
}
213
213
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.12.0-SNAPSHOT
4
+ VERSION_NAME =1.0.0
5
5
6
6
SONATYPE_AUTOMATIC_RELEASE =true
7
7
SONATYPE_HOST =DEFAULT
You can’t perform that action at this time.
0 commit comments