Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump tui from 0.16.0 to 0.18.0 #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 1, 2022

Bumps tui from 0.16.0 to 0.18.0.

Release notes

Sourced from tui's releases.

v0.18.0

Features

  • Update crossterm to 0.23.

v0.17.0

Features

  • Add option to widgets::List to repeat the hightlight symbol for each line of multi-line items (#533).
  • Add option to control the alignment of Axis labels in the Chart widget (#568).

Breaking changes

  • The minimum supported rust version is now 1.56.1.

New default backend and consolidated backend options (#553)

  • crossterm is now the default backend. If you are already using the crossterm backend, you can simplify your dependency specification in Cargo.toml:
- tui = { version = "0.16", default-features = false, features = ["crossterm"] }
+ tui = "0.17"

If you are using the termion backend, your Cargo is now a bit more verbose:

- tui = "0.16"
+ tui = { version = "0.17", default-features = false, features = ["termion"] }

crossterm has also been bumped to version 0.22.

Because of their apparent low usage, curses and rustbox backends have been removed. If you are using one of them, you can import their last implementation in your own project:

Canvas labels (#543)

  • Labels of the Canvas widget are now text::Spans. The signature of widgets::canvas::Context::print has thus been updated:
- ctx.print(x, y, "Some text", Color::Yellow);
+ ctx.print(x, y, Span::styled("Some text", Style::default().fg(Color::Yellow)))
Changelog

Sourced from tui's changelog.

v0.18.0 - 2022-04-24

Features

  • Update crossterm to 0.23

v0.17.0 - 2022-01-22

Features

  • Add option to widgets::List to repeat the hightlight symbol for each line of multi-line items (#533).
  • Add option to control the alignment of Axis labels in the Chart widget (#568).

Breaking changes

  • The minimum supported rust version is now 1.56.1.

New default backend and consolidated backend options (#553)

  • crossterm is now the default backend. If you are already using the crossterm backend, you can simplify your dependency specification in Cargo.toml:
- tui = { version = "0.16", default-features = false, features = ["crossterm"] }
+ tui = "0.17"

If you are using the termion backend, your Cargo is now a bit more verbose:

- tui = "0.16"
+ tui = { version = "0.17", default-features = false, features = ["termion"] }

crossterm has also been bumped to version 0.22.

Because of their apparent low usage, curses and rustbox backends have been removed. If you are using one of them, you can import their last implementation in your own project:

Canvas labels (#543)

  • Labels of the Canvas widget are now text::Spans. The signature of widgets::canvas::Context::print has thus been updated:
- ctx.print(x, y, "Some text", Color::Yellow);
+ ctx.print(x, y, Span::styled("Some text", Style::default().fg(Color::Yellow)))
Commits
  • e71faa9 Release v0.18.0
  • ed0ae81 chore: update crossterm to v0.23 (#598)
  • a61b078 chore: fix clippy warning (#601)
  • 8593930 Release v0.17.0
  • cf2d9c2 feat!: bump MSRV to 1.56.1 and migrate to edition 2021
  • 853d904 feat(widgets/chart): add option to control alignment of axis labels (#568)
  • 6069d89 chore: fix all clippy warnings
  • d25e263 chore: enable clippy on all targets
  • d05e696 chore: fix optional attribute for serde feature (#571)
  • ef583ce chore(examples): remove unused demo/util.rs
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [tui](https://github.com/fdehau/tui-rs) from 0.16.0 to 0.18.0.
- [Release notes](https://github.com/fdehau/tui-rs/releases)
- [Changelog](https://github.com/fdehau/tui-rs/blob/master/CHANGELOG.md)
- [Commits](fdehau/tui-rs@v0.16.0...v0.18.0)

---
updated-dependencies:
- dependency-name: tui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants