2 Commits

Author SHA1 Message Date
cuddle-please
fd76feff3f chore(release): 0.7.5
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-07-24 20:45:16 +00:00
7d8071d41b feat: print big inner
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-24 22:44:13 +02:00
2 changed files with 5 additions and 2 deletions

View File

@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.7.5] - 2025-07-24
### Added
- print big inner
### Other
- more error correction
- correct error test to not be as verbose

View File

@@ -11,10 +11,10 @@ mod waiter;
#[derive(thiserror::Error, Debug)]
pub enum MadError {
#[error("component: {0}")]
#[error("component: {0:#?}")]
Inner(#[source] anyhow::Error),
#[error("component: {run}")]
#[error("component: {run:#?}")]
RunError { run: anyhow::Error },
#[error("component(s) failed: {close}")]