From 7e7e17319aaf7b42bffd9e9cd4a12cb1c2bc8318 Mon Sep 17 00:00:00 2001 From: Freja Roberts Date: Thu, 14 Mar 2024 23:24:37 +0100 Subject: [PATCH 1/4] chore: update changelog --- color-eyre/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/color-eyre/CHANGELOG.md b/color-eyre/CHANGELOG.md index 1d859cb..d1108f1 100644 --- a/color-eyre/CHANGELOG.md +++ b/color-eyre/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Changed +- Added color-eyre to the eyre monorepo ## [0.6.2] - 2022-07-11 ### Added From 63cb4122fcff401efcab862ecf6c65509bc9d1c0 Mon Sep 17 00:00:00 2001 From: Freja Roberts Date: Thu, 14 Mar 2024 23:33:32 +0100 Subject: [PATCH 2/4] chore: remove old metadata --- color-eyre/Cargo.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/color-eyre/Cargo.toml b/color-eyre/Cargo.toml index 9f325ec..a7c3cca 100644 --- a/color-eyre/Cargo.toml +++ b/color-eyre/Cargo.toml @@ -41,9 +41,6 @@ wasm-bindgen-test = "0.3.15" all-features = true rustdoc-args = ["--cfg", "docsrs"] -[package.metadata.release] -dev-version = false - [[package.metadata.release.pre-release-replacements]] file = "CHANGELOG.md" search = "Unreleased" From 7689b983de53562d678f58a05a6dcfc57d5fae76 Mon Sep 17 00:00:00 2001 From: Freja Roberts Date: Thu, 14 Mar 2024 23:35:46 +0100 Subject: [PATCH 3/4] chore: don't inherit workspace readme --- color-eyre/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/color-eyre/Cargo.toml b/color-eyre/Cargo.toml index a7c3cca..4848112 100644 --- a/color-eyre/Cargo.toml +++ b/color-eyre/Cargo.toml @@ -3,12 +3,13 @@ name = "color-eyre" version = "0.6.2" description = "An error report handler for panics and eyre::Reports for colorful, consistent, and well formatted error reports for all kinds of errors." documentation = "https://docs.rs/color-eyre" +readme = "./README.md" + authors = { workspace = true } edition = { workspace = true } license = { workspace = true } repository = { workspace = true } -readme = { workspace = true } rust-version = { workspace = true } [features] From f544fed447df75b1accbc95bc2c26aa8fedc312e Mon Sep 17 00:00:00 2001 From: Freja Roberts Date: Thu, 14 Mar 2024 23:39:45 +0100 Subject: [PATCH 4/4] chore: Release --- color-eyre/CHANGELOG.md | 5 ++++- color-eyre/Cargo.toml | 2 +- color-eyre/src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/color-eyre/CHANGELOG.md b/color-eyre/CHANGELOG.md index d1108f1..cd0558e 100644 --- a/color-eyre/CHANGELOG.md +++ b/color-eyre/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate + +## [0.6.3] - 2024-03-14 ### Changed - Added color-eyre to the eyre monorepo @@ -74,7 +76,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 better compatibility with the Display trait -[Unreleased]: https://github.com/eyre-rs/color-eyre/compare/v0.6.2...HEAD +[Unreleased]: https://github.com/eyre-rs/color-eyre/compare/color-eyre-v0.6.3...HEAD +[0.6.3]: https://github.com/eyre-rs/color-eyre/compare/v0.6.2...color-eyre-v0.6.3 [0.6.2]: https://github.com/eyre-rs/color-eyre/compare/v0.6.1...v0.6.2 [0.6.1]: https://github.com/eyre-rs/color-eyre/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/eyre-rs/color-eyre/compare/v0.5.11...v0.6.0 diff --git a/color-eyre/Cargo.toml b/color-eyre/Cargo.toml index 4848112..ff18703 100644 --- a/color-eyre/Cargo.toml +++ b/color-eyre/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "color-eyre" -version = "0.6.2" +version = "0.6.3" description = "An error report handler for panics and eyre::Reports for colorful, consistent, and well formatted error reports for all kinds of errors." documentation = "https://docs.rs/color-eyre" readme = "./README.md" diff --git a/color-eyre/src/lib.rs b/color-eyre/src/lib.rs index 2664cad..8b9e144 100644 --- a/color-eyre/src/lib.rs +++ b/color-eyre/src/lib.rs @@ -334,7 +334,7 @@ //! [`examples/custom_filter.rs`]: https://github.com/yaahc/color-eyre/blob/master/examples/custom_filter.rs //! [`examples/custom_section.rs`]: https://github.com/yaahc/color-eyre/blob/master/examples/custom_section.rs //! [`examples/multiple_errors.rs`]: https://github.com/yaahc/color-eyre/blob/master/examples/multiple_errors.rs -#![doc(html_root_url = "https://docs.rs/color-eyre/0.6.2")] +#![doc(html_root_url = "https://docs.rs/color-eyre/0.6.3")] #![cfg_attr(docsrs, feature(doc_cfg))] #![warn( missing_docs,