diff --git a/RELEASING.md b/RELEASING.md new file mode 100644 index 0000000..97c58be --- /dev/null +++ b/RELEASING.md @@ -0,0 +1,19 @@ +# Releasing Nitrogen + +``` +cargo release --execute --no-publish +``` + +Where `` is one of `major`, `minor`, or `patch` depending on what version of nitrogen you want to release. + +Run the following to actually upload to cargo: + +``` +cargo publish +``` + +Afterwards we need to publish an alpha version to prepare for the next release. + +``` +cargo release alpha --execute --no-publish +```