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
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 have to update via Git, your Kitsu folder. Run the following command to get the latest version of Kitsu:
git pull --rebase origin build