Update release notes

This commit is contained in:
Samuel Cantero 2023-11-07 15:47:51 -03:00
parent d425a60f9c
commit 3e9ebef32e
2 changed files with 9 additions and 6 deletions

View File

@ -50,11 +50,12 @@ autocreation in order for the tests to succeed.
## Releasing
* Ensure `rdkafka-sys` has no unreleased changes.
* Ensure the changelog is up to date.
* Ensure Cargo.toml is up to date.
* Checkout into master and pull the latest changes.
* Ensure `rdkafka-sys` has no unreleased changes. If it does, release `rdkafka-sys` first.
* Ensure the changelog is up to date (i.e not Unreleased changes).
* Run `./generate_readme.py > README.md`.
* Bump the version in Cargo.toml and commit locally.
* Run `cargo publish`.
* Run `git tag -am $VERSION $VERSION`.
* Run `git push`.
* Run `git push origin $VERSION`.
* Run `cargo publish`.

View File

@ -19,7 +19,9 @@ Then:
## Releasing
* Ensure the changelog is up to date.
* Ensure Cargo.toml is up to date.
* Checkout into master and pull the latest changes.
* Ensure the changelog is up to date (i.e not Unreleased changes).
* Run `cd rdkafka-sys && ../generate_readme.py > README.md`.
* Bump the version in Cargo.toml and commit locally.
* Run `cargo publish`.
* Push the commit.