Skip to content

Commit

Permalink
add releasing documentation (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
justin1121 authored Dec 8, 2022
1 parent 8fb8c44 commit 6a98a30
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions RELEASING.md
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
```

0 comments on commit 6a98a30

Please sign in to comment.