-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8fb8c44
commit 6a98a30
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Releasing Nitrogen | ||
|
||
``` | ||
cargo release <VERSION LEVEL> --execute --no-publish | ||
``` | ||
|
||
Where `<VERSION LEVEL>` 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 | ||
``` |