To generate a new version, you need to follow these steps:
- In the
mainbranch, you must bump the version inside theCargo.tomlfiles. - Run
make rs-checkso that the version is changed in theCargo.lockfile. - 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 pushtomain.