Skip to content

Commit a8bede1

Browse files
committed
Prepare version 1.0.0
1 parent 40ff9ca commit a8bede1

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ jobs:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4040
BRANCH: site
4141
FOLDER: build/dokka/htmlMultiModule
42-
TARGET_FOLDER: docs/0.x/
42+
TARGET_FOLDER: docs/1.x/
4343
CLEAN: true

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22

33
## [Unreleased]
44

5+
6+
## [1.0.0] - 2023-07-19
7+
58
Changed:
69
- `RecompositionClock` is now named `RecompositionMode` to better reflect that it is not itself the clock,
710
but the mode by which Molecule will perform recomposition. A clock is always used internally as that is the
811
underlying mechanism of Compose.
12+
- Darwin frame clock and the internal frame clock used with `RecompositionMode.Immediate` now correctly
13+
send actual frame times.
914

1015

1116
## [0.11.0] - 2023-06-30
@@ -149,7 +154,8 @@ Initial release
149154

150155

151156

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
153159
[0.11.0]: https://github.com/cashapp/molecule/releases/tag/0.11.0
154160
[0.10.0]: https://github.com/cashapp/molecule/releases/tag/0.10.0
155161
[0.9.0]: https://github.com/cashapp/molecule/releases/tag/0.9.0

README.md

Lines changed: 14 additions & 14 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.11.0'
174+
classpath 'app.cash.molecule:molecule-gradle-plugin:1.0.0'
175175
}
176176
}
177177
@@ -181,18 +181,18 @@ apply plugin: 'app.cash.molecule'
181181
Since Kotlin compiler plugins are an unstable API, certain versions of Molecule only work with
182182
certain versions of Kotlin.
183183

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 |
196196

197197
<details>
198198
<summary>Snapshots of the development version are available in Sonatype's snapshots repository.</summary>
@@ -207,7 +207,7 @@ buildscript {
207207
}
208208
}
209209
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'
211211
}
212212
}
213213

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.12.0-SNAPSHOT
4+
VERSION_NAME=1.0.0
55

66
SONATYPE_AUTOMATIC_RELEASE=true
77
SONATYPE_HOST=DEFAULT

0 commit comments

Comments
 (0)