diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bc40385..3a95f7cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ ## [Unreleased] +New: +- Nothing yet! + +Changed: +- Nothing yet! + +Fixed: +- Nothing yet! + + +## [2.0.0] - 2024-05-28 + New: - Support for Kotlin 2.0.0! @@ -11,6 +23,8 @@ Changed: Fixed: - Mac OS `DisplayLinkClock` was updated to correctly use a "static" function for pointer-passing to `CVDisplayLink`, as newly-enforced by Kotlin 2.0. This should not cause a behavior change. +Note: This release is otherwise binary-compatible with the 1.x versions. The major version bump is due to the build change only. + ### Gradle plugin removed @@ -323,7 +337,8 @@ Initial release -[Unreleased]: https://github.com/cashapp/molecule/compare/1.4.3...HEAD +[Unreleased]: https://github.com/cashapp/molecule/compare/2.0.0...HEAD +[2.0.0]: https://github.com/cashapp/molecule/releases/tag/2.0.0 [1.4.3]: https://github.com/cashapp/molecule/releases/tag/1.4.3 [1.4.2]: https://github.com/cashapp/molecule/releases/tag/1.4.2 [1.4.1]: https://github.com/cashapp/molecule/releases/tag/1.4.1 diff --git a/RELEASING.md b/RELEASING.md index e57a63f1..ce8fdf27 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -7,31 +7,27 @@ 2. Add a link URL to ensure the header link works. 3. Add a new `Unreleased` section to the top. -3. Update the `README.md` so the "Usage" section reflects the new release version and the - snapshot section reflects the next "SNAPSHOT" version. Update the Kotlin compatibility - table with the new version. - -4. Commit +3. Commit ``` $ git commit -am "Prepare version X.Y.Z" ``` -5. Tag +4. Tag ``` $ git tag -am "Version X.Y.Z" X.Y.Z ``` -6. Update the `VERSION_NAME` in `gradle.properties` to the next "SNAPSHOT" version. +5. Update the `VERSION_NAME` in `gradle.properties` to the next "SNAPSHOT" version. -7. Commit +6. Commit ``` $ git commit -am "Prepare next development version" ``` -8. Push! +7. Push! ``` $ git push && git push --tags diff --git a/gradle.properties b/gradle.properties index 9a42ffa6..bcce1621 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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=2.0.0-SNAPSHOT +VERSION_NAME=2.0.0 SONATYPE_AUTOMATIC_RELEASE=true SONATYPE_HOST=DEFAULT