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.
[ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
This PR contains the following updates:
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.