diff --git a/Cargo.lock b/Cargo.lock index 305e9a8c..103510d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -21,7 +21,7 @@ dependencies = [ name = "anstream" version = "0.5.0" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", "anstyle-parse 0.2.1", "anstyle-query 1.0.0", "anstyle-wincon 2.1.0", @@ -55,7 +55,7 @@ checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" [[package]] name = "anstyle" -version = "1.0.2" +version = "1.0.3" dependencies = [ "lexopt", ] @@ -65,14 +65,14 @@ name = "anstyle-ansi-term" version = "1.0.0" dependencies = [ "ansi_term", - "anstyle 1.0.2", + "anstyle 1.0.3", ] [[package]] name = "anstyle-crossterm" version = "1.0.0" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", "crossterm", ] @@ -80,28 +80,28 @@ dependencies = [ name = "anstyle-git" version = "1.0.0" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", ] [[package]] name = "anstyle-lossy" version = "1.0.0" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", ] [[package]] name = "anstyle-ls" version = "1.0.1" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", ] [[package]] name = "anstyle-owo-colors" version = "1.0.1" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", "owo-colors", ] @@ -147,7 +147,7 @@ dependencies = [ name = "anstyle-roff" version = "0.3.1" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", "anstyle-lossy", "cansi", "roff", @@ -158,7 +158,7 @@ dependencies = [ name = "anstyle-syntect" version = "1.0.0" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", "syntect", ] @@ -166,7 +166,7 @@ dependencies = [ name = "anstyle-termcolor" version = "1.0.0" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", "termcolor", ] @@ -174,7 +174,7 @@ dependencies = [ name = "anstyle-wincon" version = "2.1.0" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", "lexopt", "windows-sys 0.48.0", ] @@ -193,7 +193,7 @@ dependencies = [ name = "anstyle-yansi" version = "1.0.0" dependencies = [ - "anstyle 1.0.2", + "anstyle 1.0.3", "yansi", ] diff --git a/crates/anstyle/CHANGELOG.md b/crates/anstyle/CHANGELOG.md index 2e3523c3..f2479f5b 100644 --- a/crates/anstyle/CHANGELOG.md +++ b/crates/anstyle/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.0.3] - 2023-09-11 + ### Compatibility - Update MSRV to 1.70.0 @@ -141,7 +143,8 @@ MSRV updated to 1.64.0 ## [0.1.1] - 2022-05-18 -[Unreleased]: https://github.com/rust-cli/anstyle/compare/v1.0.2...HEAD +[Unreleased]: https://github.com/rust-cli/anstyle/compare/v1.0.3...HEAD +[1.0.3]: https://github.com/rust-cli/anstyle/compare/v1.0.2...v1.0.3 [1.0.2]: https://github.com/rust-cli/anstyle/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/rust-cli/anstyle/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/rust-cli/anstyle/compare/v0.3.5...v1.0.0 diff --git a/crates/anstyle/Cargo.toml b/crates/anstyle/Cargo.toml index 0886a1e0..76f8bb7e 100644 --- a/crates/anstyle/Cargo.toml +++ b/crates/anstyle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anstyle" -version = "1.0.2" +version = "1.0.3" description = "ANSI text styling" repository = "https://github.com/rust-cli/anstyle.git" homepage = "https://github.com/rust-cli/anstyle"