c4k-website/doc/Releasing.md

75 lines
1.5 KiB
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
```
2022-12-01 14:40:22 +00:00
## ... for stable release patch version
2022-09-08 13:04:17 +00:00
2022-10-21 13:36:31 +00:00
Make sure tags are protected in gitlab:
Repository Settings -> Protected Tags -> set \*.\*.\* as tag and save.
``` 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-12-01 14:40:22 +00:00
## ... for stable release minor version
Make sure tags are protected in gitlab:
Repository Settings -> Protected Tags -> set \*.\*.\* as tag and save.
``` bash
git checkout main # for old projects replace main with master
git add .
git commit
```
In package.json, find ":version" keyword and remove "-SNAPSHOT" from version number.
Increment minor version by one, set patch version to zero.
Open project.clj, find ":version" keyword, increment minor version by one, set patch version to zero.
Leave "-SNAPSHOT" be.
``` bash
git add .
git commit -m "Release [version]"
lein release
git push --follow-tags
```
Open package.json again, increase version increment by one and add "-SNAPSHOT".
``` bash
git commit -am "version bump"
git push
```
2022-10-21 09:33:25 +00:00
Done.