Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 381 Bytes

DEVELOPMENT.md

File metadata and controls

18 lines (12 loc) · 381 Bytes

Publishing a new version

Adjust version number

In Cargo.toml as well as the html_root_url in lib.rs. Stick to semantic versioning.

Tag the current commit

GIT_COMMITTER_DATE=$(git log -n1 --pretty=%aD) git tag -a -m "Release 0.3.0" 0.3.0
git push --tags

Publish on Cargo

cargo publish [--dry-run]