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
This commit is contained in:
Jane Lusby 2020-09-14 19:52:18 -07:00 committed by GitHub
parent 74fa2c9dea
commit d1ff3e8bd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header --> <!-- next-header -->
## [Unreleased] - ReleaseDate ## [Unreleased] - ReleaseDate
## [0.5.3] - 2020-09-14
### Added ### Added
- add `panic_section` method to `HookBuilder` for overriding the printer for - add `panic_section` method to `HookBuilder` for overriding the printer for
the panic message at the start of panic reports 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 better compatibility with the Display trait
<!-- next-url --> <!-- next-url -->
[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 [0.5.2]: https://github.com/yaahc/color-eyre/releases/tag/v0.5.2

View File

@ -1,6 +1,6 @@
[package] [package]
name = "color-eyre" name = "color-eyre"
version = "0.5.3-alpha.0" version = "0.5.4-alpha.0"
authors = ["Jane Lusby <jlusby@yaah.dev>"] authors = ["Jane Lusby <jlusby@yaah.dev>"]
edition = "2018" edition = "2018"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@ -40,9 +40,6 @@ rustdoc-args = ["--cfg", "docsrs"]
[profile.dev.package.backtrace] [profile.dev.package.backtrace]
opt-level = 3 opt-level = 3
[package.metadata.release]
disable-push = true
[[package.metadata.release.pre-release-replacements]] [[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md" file = "CHANGELOG.md"
search = "Unreleased" search = "Unreleased"

View File

@ -334,7 +334,7 @@
//! [`examples/custom_filter.rs`]: https://github.com/yaahc/color-eyre/blob/master/examples/custom_filter.rs //! [`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/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 //! [`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))] #![cfg_attr(docsrs, feature(doc_cfg))]
#![warn( #![warn(
missing_docs, missing_docs,