Skip to content

Commit

Permalink
Prepare version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jul 19, 2023
1 parent 40ff9ca commit a8bede1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: site
FOLDER: build/dokka/htmlMultiModule
TARGET_FOLDER: docs/0.x/
TARGET_FOLDER: docs/1.x/
CLEAN: true
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

## [Unreleased]


## [1.0.0] - 2023-07-19

Changed:
- `RecompositionClock` is now named `RecompositionMode` to better reflect that it is not itself the clock,
but the mode by which Molecule will perform recomposition. A clock is always used internally as that is the
underlying mechanism of Compose.
- Darwin frame clock and the internal frame clock used with `RecompositionMode.Immediate` now correctly
send actual frame times.


## [0.11.0] - 2023-06-30
Expand Down Expand Up @@ -149,7 +154,8 @@ Initial release



[Unreleased]: https://github.com/cashapp/molecule/compare/0.11.0...HEAD
[Unreleased]: https://github.com/cashapp/molecule/compare/1.0.0...HEAD
[1.0.0]: https://github.com/cashapp/molecule/releases/tag/1.0.0
[0.11.0]: https://github.com/cashapp/molecule/releases/tag/0.11.0
[0.10.0]: https://github.com/cashapp/molecule/releases/tag/0.10.0
[0.9.0]: https://github.com/cashapp/molecule/releases/tag/0.9.0
Expand Down
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'app.cash.molecule:molecule-gradle-plugin:0.11.0'
classpath 'app.cash.molecule:molecule-gradle-plugin:1.0.0'
}
}
Expand All @@ -181,18 +181,18 @@ apply plugin: 'app.cash.molecule'
Since Kotlin compiler plugins are an unstable API, certain versions of Molecule only work with
certain versions of Kotlin.

| Kotlin | Molecule |
|--------|---------------|
| 1.8.22 | 0.11.0 |
| 1.8.21 | 0.10.0 |
| 1.8.20 | 0.9.0 |
| 1.8.10 | 0.8.0 |
| 1.8.0 | 0.7.0 - 0.7.1 |
| 1.7.20 | 0.6.0 - 0.6.1 |
| 1.7.10 | 0.4.0 - 0.5.0 |
| 1.7.0 | 0.3.0 - 0.3.1 |
| 1.6.10 | 0.2.0 |
| 1.5.31 | 0.1.0 |
| Kotlin | Molecule |
|--------|----------------|
| 1.8.22 | 0.11.0 - 1.0.0 |
| 1.8.21 | 0.10.0 |
| 1.8.20 | 0.9.0 |
| 1.8.10 | 0.8.0 |
| 1.8.0 | 0.7.0 - 0.7.1 |
| 1.7.20 | 0.6.0 - 0.6.1 |
| 1.7.10 | 0.4.0 - 0.5.0 |
| 1.7.0 | 0.3.0 - 0.3.1 |
| 1.6.10 | 0.2.0 |
| 1.5.31 | 0.1.0 |

<details>
<summary>Snapshots of the development version are available in Sonatype's snapshots repository.</summary>
Expand All @@ -207,7 +207,7 @@ buildscript {
}
}
dependencies {
classpath 'app.cash.molecule:molecule-gradle-plugin:0.12.0-SNAPSHOT'
classpath 'app.cash.molecule:molecule-gradle-plugin:1.1.0-SNAPSHOT'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GROUP=app.cash.molecule

# HEY! If you change the major version here be sure to update release.yaml doc target folder!
VERSION_NAME=0.12.0-SNAPSHOT
VERSION_NAME=1.0.0

SONATYPE_AUTOMATIC_RELEASE=true
SONATYPE_HOST=DEFAULT
Expand Down

0 comments on commit a8bede1

Please sign in to comment.