Skip to content

Commit 6e96e96

Browse files
committed
chore: Release
1 parent 71560fa commit 6e96e96

File tree

37 files changed

+128
-74
lines changed

37 files changed

+128
-74
lines changed

Cargo.lock

+38-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/anstream/CHANGELOG.md

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

10+
## [0.6.15] - 2024-07-25
11+
1012
## [0.6.14] - 2024-05-02
1113

1214
### Fixes
@@ -233,7 +235,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
233235
## [0.0.1] - 2023-03-07
234236

235237
<!-- next-url -->
236-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.14...HEAD
238+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.15...HEAD
239+
[0.6.15]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.14...anstream-v0.6.15
237240
[0.6.14]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.13...anstream-v0.6.14
238241
[0.6.13]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.12...anstream-v0.6.13
239242
[0.6.12]: https://github.com/rust-cli/anstyle/compare/anstream-v0.6.11...anstream-v0.6.12

crates/anstream/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstream"
3-
version = "0.6.14"
3+
version = "0.6.15"
44
description = "A simple cross platform library for writing colored text to a terminal."
55
repository = "https://github.com/rust-cli/anstyle.git"
66
homepage = "https://github.com/rust-cli/anstyle"

crates/anstyle-ansi-term/CHANGELOG.md

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

10+
## [1.0.2] - 2024-07-25
11+
1012
## [1.0.1] - 2024-05-02
1113

1214
### Fixes
@@ -30,7 +32,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3032
## [0.1.1] - 2022-08-17
3133

3234
<!-- next-url -->
33-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-ansi-term-v1.0.1...HEAD
35+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-ansi-term-v1.0.2...HEAD
36+
[1.0.2]: https://github.com/rust-cli/anstyle/compare/anstyle-ansi-term-v1.0.1...anstyle-ansi-term-v1.0.2
3437
[1.0.1]: https://github.com/rust-cli/anstyle/compare/anstyle-ansi-term-v1.0.0...anstyle-ansi-term-v1.0.1
3538
[1.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-ansi-term-v0.2.0...anstyle-ansi-term-v1.0.0
3639
[0.2.0]: https://github.com/rust-cli/anstyle/compare/anstyle-ansi-term-v0.1.2...anstyle-ansi-term-v0.2.0

crates/anstyle-ansi-term/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstyle-ansi-term"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "Adapt between ansi_term and anstyle"
55
repository = "https://github.com/rust-cli/anstyle.git"
66
homepage = "https://github.com/rust-cli/anstyle"

crates/anstyle-crossterm/CHANGELOG.md

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

10+
## [2.0.2] - 2024-07-25
11+
1012
## [2.0.1] - 2024-05-02
1113

1214
### Fixes
@@ -38,7 +40,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3840
## [0.1.1] - 2022-10-07
3941

4042
<!-- next-url -->
41-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-crossterm-v2.0.1...HEAD
43+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-crossterm-v2.0.2...HEAD
44+
[2.0.2]: https://github.com/rust-cli/anstyle/compare/anstyle-crossterm-v2.0.1...anstyle-crossterm-v2.0.2
4245
[2.0.1]: https://github.com/rust-cli/anstyle/compare/anstyle-crossterm-v2.0.0...anstyle-crossterm-v2.0.1
4346
[2.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-crossterm-v1.0.0...anstyle-crossterm-v2.0.0
4447
[1.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-crossterm-v0.2.0...anstyle-crossterm-v1.0.0

crates/anstyle-crossterm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstyle-crossterm"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "Adapt between crossterm and anstyle"
55
repository = "https://github.com/rust-cli/anstyle.git"
66
homepage = "https://github.com/rust-cli/anstyle"

crates/anstyle-git/CHANGELOG.md

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

10+
## [1.1.1] - 2024-07-25
11+
1012
## [1.1.0] - 2024-07-14
1113

1214
### Features
@@ -42,7 +44,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4244
## [0.2.1] - 2022-05-19
4345

4446
<!-- next-url -->
45-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-git-v1.1.0...HEAD
47+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-git-v1.1.1...HEAD
48+
[1.1.1]: https://github.com/rust-cli/anstyle/compare/anstyle-git-v1.1.0...anstyle-git-v1.1.1
4649
[1.1.0]: https://github.com/rust-cli/anstyle/compare/anstyle-git-v1.0.1...anstyle-git-v1.1.0
4750
[1.0.1]: https://github.com/rust-cli/anstyle/compare/anstyle-git-v1.0.0...anstyle-git-v1.0.1
4851
[1.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-git-v0.3.0...anstyle-git-v1.0.0

crates/anstyle-git/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstyle-git"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Parse Git Style Descriptions"
55
repository = "https://github.com/rust-cli/anstyle.git"
66
homepage = "https://github.com/rust-cli/anstyle"

crates/anstyle-lossy/CHANGELOG.md

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

10+
## [1.1.2] - 2024-07-25
11+
1012
## [1.1.1] - 2024-05-02
1113

1214
### Fixes
@@ -42,7 +44,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4244
## [0.1.1] - 2022-10-07
4345

4446
<!-- next-url -->
45-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-lossy-v1.1.1...HEAD
47+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-lossy-v1.1.2...HEAD
48+
[1.1.2]: https://github.com/rust-cli/anstyle/compare/anstyle-lossy-v1.1.1...anstyle-lossy-v1.1.2
4649
[1.1.1]: https://github.com/rust-cli/anstyle/compare/anstyle-lossy-v1.1.0...anstyle-lossy-v1.1.1
4750
[1.1.0]: https://github.com/rust-cli/anstyle/compare/anstyle-lossy-v1.0.0...anstyle-lossy-v1.1.0
4851
[1.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-lossy-v0.2.0...anstyle-lossy-v1.0.0

crates/anstyle-lossy/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstyle-lossy"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "Lossy conversion between ANSI Color Codes"
55
repository = "https://github.com/rust-cli/anstyle.git"
66
homepage = "https://github.com/rust-cli/anstyle"

crates/anstyle-ls/CHANGELOG.md

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

10+
## [1.0.3] - 2024-07-25
11+
1012
## [1.0.2] - 2024-05-02
1113

1214
### Fixes
@@ -30,7 +32,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3032
## [0.1.1] - 2022-10-07
3133

3234
<!-- next-url -->
33-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-ls-v1.0.2...HEAD
35+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-ls-v1.0.3...HEAD
36+
[1.0.3]: https://github.com/rust-cli/anstyle/compare/anstyle-ls-v1.0.2...anstyle-ls-v1.0.3
3437
[1.0.2]: https://github.com/rust-cli/anstyle/compare/anstyle-ls-v1.0.1...anstyle-ls-v1.0.2
3538
[1.0.1]: https://github.com/rust-cli/anstyle/compare/anstyle-ls-v1.0.0...anstyle-ls-v1.0.1
3639
[1.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-ls-v0.2.0...anstyle-ls-v1.0.0

crates/anstyle-ls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstyle-ls"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "Parse LS_COLORS Style Descriptions"
55
repository = "https://github.com/rust-cli/anstyle.git"
66
homepage = "https://github.com/rust-cli/anstyle"

crates/anstyle-owo-colors/CHANGELOG.md

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

10+
## [2.0.2] - 2024-07-25
11+
1012
## [2.0.1] - 2024-05-02
1113

1214
### Fixes
@@ -47,7 +49,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4749
## [0.1.1] - 2022-05-18
4850

4951
<!-- next-url -->
50-
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-owo-colors-v2.0.1...HEAD
52+
[Unreleased]: https://github.com/rust-cli/anstyle/compare/anstyle-owo-colors-v2.0.2...HEAD
53+
[2.0.2]: https://github.com/rust-cli/anstyle/compare/anstyle-owo-colors-v2.0.1...anstyle-owo-colors-v2.0.2
5154
[2.0.1]: https://github.com/rust-cli/anstyle/compare/anstyle-owo-colors-v2.0.0...anstyle-owo-colors-v2.0.1
5255
[2.0.0]: https://github.com/rust-cli/anstyle/compare/anstyle-owo-colors-v1.0.1...anstyle-owo-colors-v2.0.0
5356
[1.0.1]: https://github.com/rust-cli/anstyle/compare/anstyle-owo-colors-v1.0.0...anstyle-owo-colors-v1.0.1

crates/anstyle-owo-colors/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anstyle-owo-colors"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "Adapt between owo-colors and anstyle"
55
repository = "https://github.com/rust-cli/anstyle.git"
66
homepage = "https://github.com/rust-cli/anstyle"

0 commit comments

Comments
 (0)