To generate a new version, you need to follow these steps:
- In the
main
branch, you must bump the version inside theCargo.toml
file. - Run
make rs-check
so that the version is changed in theCargo.lock
file. - Run the command
git add -A && git commit -m "release: bump version"
. - Run the command
git tag -a <your.new.version> -m "version <your.new.version>"
. - Run the command
make doc-changelog && make doc-readme
. - Run the command
git add -A && git commit -m "release: <your.new.version>"
. - Run
git push
tomain
.