mirror of
https://github.com/metosin/reitit.git
synced 2025-12-18 00:41:12 +00:00
Update development.md
This commit is contained in:
parent
51a26ed052
commit
2638041e0c
1 changed files with 12 additions and 1 deletions
|
|
@ -31,11 +31,22 @@ java -version
|
||||||
|
|
||||||
# new version
|
# new version
|
||||||
./scripts/set-version "1.0.0"
|
./scripts/set-version "1.0.0"
|
||||||
./scripts/lein-modules install
|
|
||||||
|
# create a release commit and a tag
|
||||||
|
git add -u
|
||||||
|
git commit -m "Release 1.0.0"
|
||||||
|
git tag 1.0.0
|
||||||
|
|
||||||
# works
|
# works
|
||||||
|
./scripts/lein-modules install
|
||||||
lein test
|
lein test
|
||||||
|
|
||||||
# deploy to clojars
|
# deploy to clojars
|
||||||
./scripts/lein-modules do clean, deploy clojars
|
./scripts/lein-modules do clean, deploy clojars
|
||||||
|
|
||||||
|
# push the commit and the tag
|
||||||
|
git push
|
||||||
|
git push --tags
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Remember to update the changelog as well!
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue