[go: up one dir, main page]

ratatui 0.21.0

A library to build rich terminal user interfaces or dashboards
Documentation
1
2
3
4
5
6
7
8
9
10
# Creating a Release

[crates.io](https://crates.io/crates/ratatui) releases are automated via [GitHub actions](.github/workflows/cd.yml) and triggered by pushing a tag.

1. Bump the version in [Cargo.toml]Cargo.toml.
2. Ensure [CHANGELOG.md]CHANGELOG.md is updated. [git-cliff]https://github.com/orhun/git-cliff can be used for generating the entries.
3. Commit and push the changes.
4. Create a new tag: `git tag -a v[X.Y.Z]`
5. Push the tag: `git push --tags`
6. Wait for [Continuous Deployment]https://github.com/tui-rs-revival/ratatui/actions workflow to finish.