mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 08:01:10 +00:00
1.1 KiB
1.1 KiB
Development Instructions
Building
./scripts/lein-modules do clean, install
Running tests
./scripts/test.sh clj
./scripts/test.sh cljs
Formatting
clojure-lsp format
clojure-lsp clean-ns
Documentation
The documentation lives under doc and it is hosted on cljdoc. See their
documentation for library authors
Updating deps
lein ancient upgrade- Mention non-dev non-test dep upgrades in CHANGELOG.md
npm update --save- Make a PR, run CI
Making a release
We use Break Versioning. Remember our promise: patch-level bumps never include breaking changes!
# create a release commit
./scripts/set-version "1.0.0"
# !!! update the changelog
git add -u
git commit -m "Release 1.0.0"
# push the commit
git push
# !!! check that tests pass on CI
# Run automated release workflow by pushing a tag
git tag 1.0.0
git push --tags
- Announce the release at least on #reitit in Clojurians.