You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
c4k-website/doc/Releasing.md

391 B

Release process for stable release

git checkout main # for old projects replace main with master

Open package.json, find ":version" keyword and remove "-SNAPSHOT" from version number.

lein release
git push --follow-tags

Open package.json again, increase version increment by one and add "-SNAPSHOT".

git commit -am "version bump"
git push

Done.