diff --git a/color-eyre/CHANGELOG.md b/color-eyre/CHANGELOG.md index 1d859cb..cd0558e 100644 --- a/color-eyre/CHANGELOG.md +++ b/color-eyre/CHANGELOG.md @@ -8,6 +8,10 @@ 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 + ## [0.6.2] - 2022-07-11 ### Added - Option to disable display of location section in error reports @@ -72,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 9f325ec..ff18703 100644 --- a/color-eyre/Cargo.toml +++ b/color-eyre/Cargo.toml @@ -1,14 +1,15 @@ [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" + authors = { workspace = true } edition = { workspace = true } license = { workspace = true } repository = { workspace = true } -readme = { workspace = true } rust-version = { workspace = true } [features] @@ -41,9 +42,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" 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,