Skip to content

Commit

Permalink
Prepare version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed May 28, 2024
1 parent 2f73959 commit 4ea2b8c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down
14 changes: 5 additions & 9 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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=2.0.0-SNAPSHOT
VERSION_NAME=2.0.0

SONATYPE_AUTOMATIC_RELEASE=true
SONATYPE_HOST=DEFAULT
Expand Down

0 comments on commit 4ea2b8c

Please sign in to comment.