Compare commits

...

2 Commits

Author SHA1 Message Date
cuddle-please
1887750134 chore(release): 0.3.4
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-01-08 21:51:02 +00:00
aa1ef7041e
fix: tests for config
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-01-08 22:49:13 +01:00
3 changed files with 17 additions and 1 deletions

View File

@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.3.4] - 2025-01-08
### Added
- feat/add-post-clone-command
- add ability to specify custom command
### Fixed
- tests for config
### Other
- add ability to specify multiple commands
## [0.3.3] - 2025-01-07 ## [0.3.3] - 2025-01-07
### Other ### Other

View File

@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.3.3" version = "0.3.4"
[workspace.dependencies] [workspace.dependencies]

View File

@ -398,6 +398,7 @@ mod test {
directory: PathBuf::from("git").into() directory: PathBuf::from("git").into()
}, },
post_update_command: None, post_update_command: None,
post_clone_command: None
} }
}, },
config config
@ -424,6 +425,7 @@ mod test {
cache: Cache::default(), cache: Cache::default(),
projects: Projects::default(), projects: Projects::default(),
post_update_command: None, post_update_command: None,
post_clone_command: None
} }
}, },
config config