rust-cli / anstyle

ANSI text styling
https://docs.rs/anstyle
Other
119 stars 19 forks source link

chore(deps): Update Rust crate yansi to v1 - autoclosed #185

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 7 months ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
yansi dependencies major 0.5.1 -> 1.0.0

Release Notes

SergioBenitez/yansi (yansi) ### [`v1.0.1`](https://togithub.com/SergioBenitez/yansi/compare/v1.0.0...v1.0.1) [Compare Source](https://togithub.com/SergioBenitez/yansi/compare/v1.0.0...v1.0.1) ### [`v1.0.0`](https://togithub.com/SergioBenitez/yansi/releases/tag/v1.0.0) Version 1.0.0 of `yansi` is now available. For most users, upgrading will consist largely of changing calls of the form `Paint::foo(value)` to `value.foo()`: ```diff - use yansi::{Paint, Color}; + use yansi::Paint; println!("Testing, {}, {}, {}!", - Paint::red(1), + 1.red(), - Paint::green(2).bold().underline(), + 2.green().bold().underline(), - Paint::blue("3").bg(Color::White).italic()); + "3".blue().on_white().italic()); ``` Please [see the rustdocs](https://docs.rs/yansi) for complete documentation.

Configuration

📅 Schedule: Branch creation - "before 5am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

â™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.