docs: remove outdated & extra release.md (#821)

This commit is contained in:
Enrique Ortiz
2023-01-11 14:11:10 -04:00
committed by GitHub
parent dc8edcabb3
commit 8f97540bd9
2 changed files with 1 additions and 16 deletions

View File

@ -5,8 +5,7 @@
Documents on planning and process in the repository: what the labels mean, how issues are triaged, how a new release is cut and so on.
- [Labels](./labels.md): Describes the labels in the repository.
- [Release workflow](./release.md): Describes the release workflow for maintainers.
### Structure
- [Layout](./layout.md): Describes each of the crates in the repository and their function.
- [Layout](./layout.md): Describes each of the crates in the repository and their function.

View File

@ -1,14 +0,0 @@
## Release Workflow
1. Update the version in `Cargo.toml`
2. Update the changelog[^1]
- Check that all issues marked https://github.com/paradigmxyz/reth/labels/M-changelog have been added to the changelog
- Move the "Unreleased" section in the changelog under a new header with the new version, and fix up the links in the bottom of the file
3. Ensure tests and lints pass
4. Commit the new changelog and version bump
5. Tag the new version (no `v` prefix)
6. Push the new commit and tag
7. (Run release command)[^2]
[^1]: This can be automated somewhat.
[^2]: TBD.