Skip to content

Releasing

bviktor edited this page Mar 7, 2023 · 4 revisions

Verify you committed everything you wanted.

Close the relevant milestone.

Switch to changelog branch

git checkout changelog

Update it based on the commit log.

Move the changes back to master.

git checkout master
git merge changelog

Then:

export VERSION="1.0"
git tag -a v${VERSION} -m "${VERSION} release"
git push
git push --tags

Create a new release:

  • Tag version: v1.0
  • Release title: killinuxfloor 1.0

Then

  • Post to site with changelog
  • Post to Twitter
  • Post to Reddit
Clone this wiki locally