Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 628 Bytes

RELEASING.md

File metadata and controls

29 lines (20 loc) · 628 Bytes

Releasing

  1. 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.
  2. Commit

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

    $ git tag -am "Version X.Y.Z" X.Y.Z
    
  4. Push!

    $ git push && git push --tags
    

    This will trigger a GitHub Action workflow which will create a GitHub release, upload the jar, and send a PR to the Homebrew repo.

  5. Find the Homebrew PR and merge it!