We release Kitsu versions through GitHub. Every time a new version is ready, we follow this process:
- Rebase sources on the
master
branch. - Up the version number through the
npm
CLI. - Tag the commit with the Kitsu version.
- Push changes to the
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
Kitsu installation has to be updated via Git, your Kitsu folder. Run the following command to get the latest version of Kitsu:
git pull --rebase origin build