Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 655 Bytes

RELEASE.md

File metadata and controls

27 lines (19 loc) · 655 Bytes

How to create a new release for Kitsu

We release Kitsu versions through Github. Every time a new version is ready, we follow this process:

  1. Rebase sources on the master branch.
  2. Up the version number through the npm CLI.
  3. Tag the commit with the Kitsu version.
  4. Push changes to master branch.

You can run the following script to perform these commands at once:

git pull --rebase origin master
npm version patch
git push origin master --tag

Deployment

Kitsu installation have to update via Git, your Kitsu folder. Run the following command to get the latest version of Kitsu:

git pull --rebase origin build