c4k-website/doc/Releasing.md

41 lines
678 B
Markdown
Raw Normal View History

2022-10-21 09:33:25 +00:00
# Release process
## ... for testing (snapshots)
Make sure your clojars.org credentials are correctly set in your ~/.lein/profiles.clj file.
``` bash
git add .
git commit
```
``` bash
lein deploy # or lein deploy clojars
```
## ... for stable release
2022-09-08 13:04:17 +00:00
``` bash
git checkout main # for old projects replace main with master
2022-10-21 10:15:13 +00:00
git add .
git commit
2022-09-08 13:04:17 +00:00
```
Open package.json, find ":version" keyword and remove "-SNAPSHOT" from version number.
``` bash
2022-10-21 10:04:54 +00:00
git add .
git commit -m "Release [version]"
2022-09-08 13:04:17 +00:00
lein release
git push --follow-tags
```
Open package.json again, increase version increment by one and add "-SNAPSHOT".
2022-09-08 13:04:17 +00:00
``` bash
2022-09-08 13:04:17 +00:00
git commit -am "version bump"
git push
```
2022-10-21 09:33:25 +00:00
Done.