Release 0.6.12 (#152)

Adds a hotfix missed in the last version, mistake by us as the previous
release happened on the same day as the bugfix.
This commit is contained in:
Freja Roberts 2024-01-31 17:42:28 +01:00 committed by GitHub
parent 32826ab95e
commit 701d05a9f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate
## [0.6.12] - 2024-01-31
### Fixed
- Unsound cast to invalid type during Report downcast [by ten3roberts](https://github.com/eyre-rs/eyre/pull/143)
## [0.6.11] - 2023-12-13
### Fixed
- stale references to `Error` in docstrings [by birkenfeld](https://github.com/eyre-rs/eyre/pull/87)

View File

@ -1,6 +1,6 @@
[package]
name = "eyre"
version = "0.6.11"
version = "0.6.12"
authors = ["David Tolnay <dtolnay@gmail.com>", "Jane Lusby <jlusby42@gmail.com>"]
description = "Flexible concrete Error Reporting type built on std::error::Error with customizable Reports"
documentation = "https://docs.rs/eyre"

View File

@ -318,7 +318,7 @@
//! [`simple-eyre`]: https://github.com/eyre-rs/simple-eyre
//! [`color-spantrace`]: https://github.com/eyre-rs/color-spantrace
//! [`color-backtrace`]: https://github.com/athre0z/color-backtrace
#![doc(html_root_url = "https://docs.rs/eyre/0.6.11")]
#![doc(html_root_url = "https://docs.rs/eyre/0.6.12")]
#![cfg_attr(
nightly,
feature(rustdoc_missing_doc_code_examples),