Skip to content

Commit 3048fe7

Browse files
committed
chore: Release
1 parent 028ff0d commit 3048fe7

8 files changed

Lines changed: 48 additions & 39 deletions

File tree

Cargo.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/anstream/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.0.0] - 2026-02-11
11+
1012
## [0.6.21] - 2025-10-02
1113

1214
### Features
@@ -263,7 +265,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
263265
## [0.0.1] - 2023-03-07
264266

265267
<!-- next-url -->
266-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.21...HEAD
268+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstream-v1.0.0...HEAD
269+
[1.0.0]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.21...anstream-v1.0.0
267270
[0.6.21]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.20...anstream-v0.6.21
268271
[0.6.20]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.19...anstream-v0.6.20
269272
[0.6.19]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.18...anstream-v0.6.19

crates/anstream/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstream"
3-
version = "0.6.21"
3+
version = "1.0.0"
44
description = "IO stream adapters for writing colored text that will gracefully degrade according to your terminal's capabilities."
55
categories = ["command-line-interface"]
66
keywords = ["ansi", "terminal", "color", "strip", "wincon"]
@@ -32,7 +32,7 @@ test = []
3232

3333
[dependencies]
3434
anstyle = { version = "1.0.0", path = "../anstyle" }
35-
anstyle-parse = { version = "0.2.0", path = "../anstyle-parse" }
35+
anstyle-parse = { version = "1.0.0", path = "../anstyle-parse" }
3636
colorchoice = { version = "1.0.0", path = "../colorchoice" }
3737
anstyle-query = { version = "1.0.0", path = "../anstyle-query", optional = true }
3838
utf8parse = "0.2.2"

crates/anstyle-parse/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.0.0] - 2026-02-11
11+
1012
## [0.2.7] - 2025-06-04
1113

1214
## [0.2.6] - 2024-10-24
@@ -46,7 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
4648
## [0.0.1] - 2023-03-07
4749

4850
<!-- next-url -->
49-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-parse-v0.2.7...HEAD
51+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-parse-v1.0.0...HEAD
52+
[1.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-parse-v0.2.7...anstyle-parse-v1.0.0
5053
[0.2.7]: https://github.com/rust-cli/anstyle/compare/anstyle-parse-v0.2.6...anstyle-parse-v0.2.7
5154
[0.2.6]: https://github.com/rust-cli/anstyle/compare/anstyle-parse-v0.2.5...anstyle-parse-v0.2.6
5255
[0.2.5]: https://github.com/rust-cli/anstyle/compare/anstyle-parse-v0.2.4...anstyle-parse-v0.2.5

crates/anstyle-parse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstyle-parse"
3-
version = "0.2.7"
3+
version = "1.0.0"
44
description = "Parse ANSI Style Escapes"
55
categories = ["command-line-interface"]
66
keywords = ["ansi", "terminal", "color", "vte"]

crates/anstyle-roff/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.0.0] - 2026-02-11
11+
1012
## [0.3.8] - 2025-08-04
1113

1214
## [0.3.7] - 2025-08-04
@@ -50,7 +52,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
5052
## [0.1.0] - 2023-02-10
5153

5254
<!-- next-url -->
53-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-roff-v0.3.8...HEAD
55+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-roff-v1.0.0...HEAD
56+
[1.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-roff-v0.3.8...anstyle-roff-v1.0.0
5457
[0.3.8]: https://github.com/rust-cli/anstyle/compare/anstyle-roff-v0.3.7...anstyle-roff-v0.3.8
5558
[0.3.7]: https://github.com/rust-cli/anstyle/compare/anstyle-roff-v0.3.6...anstyle-roff-v0.3.7
5659
[0.3.6]: https://github.com/rust-cli/anstyle/compare/anstyle-roff-v0.3.5...anstyle-roff-v0.3.6

crates/anstyle-roff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstyle-roff"
3-
version = "0.3.8"
3+
version = "1.0.0"
44
description = "Adapt between anstyle and roff"
55
categories = ["command-line-interface"]
66
keywords = ["ansi", "terminal", "roff"]

crates/anstyle-svg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pre-release-replacements = [
2525

2626
[dependencies]
2727
anstyle = { version = "1.0.0", path = "../anstyle" }
28-
anstyle-parse = { version = "0.2.6", path = "../anstyle-parse" }
28+
anstyle-parse = { version = "1.0.0", path = "../anstyle-parse" }
2929
anstyle-lossy = { version = "1.0.0", path = "../anstyle-lossy" }
3030
html-escape = "0.2.13"
3131
unicode-width = "0.2.2"

0 commit comments

Comments
 (0)