Compare commits

...

2 Commits

Author SHA1 Message Date
cuddle-please
5a944a1172 chore(release): 0.3.3
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-03-27 13:10:30 +00:00
ca233208e2 feat: don't stop on error
All checks were successful
continuous-integration/drone/push Build is passing
2025-03-27 14:10:11 +01:00
3 changed files with 8 additions and 3 deletions

View File

@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.3.3] - 2025-03-27
### Added
- don't stop on error
- redo main part
## [0.3.2] - 2025-03-27
### Fixed

View File

@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.3.2"
version = "0.3.3"
[workspace.dependencies]
drift = { path = "crates/drift" }

View File

@ -53,8 +53,7 @@ where
tracing::debug!("running job");
if let Err(e) = drifter.execute(child_token).await {
tracing::error!("drift job failed with error: {}, stopping routine", e);
cancellation_token.cancel();
tracing::error!("drift job failed with error: {}", e);
continue
}