Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 2.13 KB

RELEASING.md

File metadata and controls

53 lines (38 loc) · 2.13 KB

kotlinx.serialization release checklist

To release new <version> of kotlinx.serialization:

  1. Checkout dev branch and update:
    git checkout dev && git pull

  2. Make sure the master branch is fully merged into dev:
    git merge origin/master

  3. Search & replace <old-version> with <version> across the project files. Should replace in:

    Update Kotlin version, if necessary.

  4. Write release notes in CHANGELOG.md:

    • Use old releases as example of style.
    • Write each change on a single line (don't wrap with CR).
    • Study commit message from previous release.

    git changelog from git-extras may help you with that.

  5. Tag version:
    git tag v<version>

  6. Push your changes:
    git push origin dev && git push origin --tags

  7. On TeamCity integration server:

    • Wait until "Runtime library (Build – Aggregated)" configuration for committed dev branch passes tests.
    • Run "Runtime library (Deploy - Train)" configuration:
      • On 'Changes' tab, select dev branch and corresponding commit.
      • On 'Parameters' tab, find 'Deploy version' and fill in with <version>.
  8. In Bintray admin interface:

    • Publish artifacts of the new version.
    • Wait until newly published version becomes the most recent.
  9. Update documentation website:
    ./update_docs.sh <version> push

  10. Create a new release in Github releases. Use created git tag for title and changelog message for body.

  11. Switch back to master branch and update it:

    git checkout master && git pull
    git merge --ff-only dev
    git push origin master
    
  12. Announce new release in Slack.