From d1ff3e8bd5df02e7741b7b9bb627940a7eec2612 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Mon, 14 Sep 2020 19:52:18 -0700 Subject: [PATCH] bump version for next release (#61) * (cargo-release) version 0.5.3 * (cargo-release) start next development iteration 0.5.4-alpha.0 * add alpha.0 to html_root_url * change of plan --- CHANGELOG.md | 5 ++++- Cargo.toml | 5 +---- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 421c711..a4a7012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate + +## [0.5.3] - 2020-09-14 ### Added - add `panic_section` method to `HookBuilder` for overriding the printer for the panic message at the start of panic reports @@ -23,5 +25,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 better compatibility with the Display trait -[Unreleased]: https://github.com/yaahc/color-eyre/compare/v0.5.2...HEAD +[Unreleased]: https://github.com/yaahc/color-eyre/compare/v0.5.3...HEAD +[0.5.3]: https://github.com/yaahc/color-eyre/compare/v0.5.2...v0.5.3 [0.5.2]: https://github.com/yaahc/color-eyre/releases/tag/v0.5.2 diff --git a/Cargo.toml b/Cargo.toml index 20e0160..7f992dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "color-eyre" -version = "0.5.3-alpha.0" +version = "0.5.4-alpha.0" authors = ["Jane Lusby "] edition = "2018" license = "MIT OR Apache-2.0" @@ -40,9 +40,6 @@ rustdoc-args = ["--cfg", "docsrs"] [profile.dev.package.backtrace] opt-level = 3 -[package.metadata.release] -disable-push = true - [[package.metadata.release.pre-release-replacements]] file = "CHANGELOG.md" search = "Unreleased" diff --git a/src/lib.rs b/src/lib.rs index d4cf282..b1b2d0c 100644 --- a/src/lib.rs +++ b/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.5.3-alpha.0")] +#![doc(html_root_url = "https://docs.rs/color-eyre/0.5.3")] #![cfg_attr(docsrs, feature(doc_cfg))] #![warn( missing_docs,