Releases: SierraSoftworks/human-errors-rs
Releases · SierraSoftworks/human-errors-rs
Version 0.1.5
Changes
- ci: Fix package versioning logic for releases @notheotherben (#8)
Version 0.1.4
Changes
- build(deps): Bump actions/download-artifact from 4.1.7 to 4.1.8 @dependabot (#3)
- build(deps): Bump Swatinem/rust-cache from 1 to 2 @dependabot (#4)
- build(deps): Bump actions/upload-artifact from 2 to 4 @dependabot (#5)
- build(deps): Bump actions/checkout from 1 to 4 @dependabot (#7)
- build(deps): Bump codecov/codecov-action from 1.2.1 to 5.1.1 @dependabot (#6)
- feat: Add support for recursively resolving standard error causes @notheotherben (#2)
- build(deps): Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows @dependabot (#1)
Version 0.1.3
Changes
- Fixes the generation of advice when empty strings are provided
- Addresses a
clippy
warning caused by the use ofInto
instead ofFrom
for the extend macro.
Version 0.1.2
Changes
- Improved documentation to avoid failing tests in derived libraries.
Version 0.1.1
Changes
- feat: Added a macro to expose a custom
human_errors::Error
type in your module for extension withFrom<T>
andInto<T>
if you need it.
Version 0.1.0
This is the initial release of the human-errors
crate as it is used in Git-Tool today. It includes support for capturing nested causal chains using either Box<std::error::Error>
errors, or nested human errors (with corresponding support for nested advice).