-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
13efc9b
commit 3692d75
Showing
1 changed file
with
13 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,13 @@ | ||
## How to make a new release | ||
|
||
|
||
1. `git pull` - make sure your local checkout is up to date | ||
2. Ensure changelog entries exist for all relevant changes. | ||
3. Make a new version in the changelog -> semver + some title that roughly describes the changes | ||
4. update version in `Cargo.toml` and in `message_parser_wasm/Cargo.toml`. (if you run rust-analyzer then `Cargo.lock` is updated automatically) | ||
5. make a commit with the changes "prepare <version>" | ||
6. make a tag for the version | ||
7. push both commit and tag | ||
8. run `cargo publish` | ||
9. run `cd message_parser_wasm && wasm-pack build --scope deltachat --target web && wasm-pack publish --target web` | ||
10. make a release on github, copy the changelog for that version over to there |