Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 990 Bytes

RELEASING.md

File metadata and controls

40 lines (27 loc) · 990 Bytes

Releasing

  1. Update the version in build.gradle.kts to the release version.

  2. Update the CHANGELOG.md:

    1. Change the Unreleased header to the release version.
    2. Add a link URL to ensure the header link works.
    3. Add a new Unreleased section to the top.
  3. Commit

    $ git commit -am "Prepare version X.Y.X"
    
  4. Tag

    $ git tag -am "Version X.Y.Z" X.Y.Z
    
  5. Update the version in build.gradle.kts to the next "SNAPSHOT" version.

  6. Commit

    $ git commit -am "Prepare next development version"
    
  7. Push!

    $ git push && git push --tags
    

    This will trigger a GitHub Action workflow which will create a GitHub release with the change log and binary, upload the library to Sonatype Nexus, and send a PR to the Homebrew repo.

  8. Find the Homebrew PR and merge it!

  9. Visit Sonatype Nexus and promote the artifact.