1 Commits

Author SHA1 Message Date
cuddle-please
f9c9db740d chore(release): 0.1.1
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-08-04 08:48:46 +00:00
3 changed files with 2 additions and 7 deletions

View File

@@ -6,11 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.2] - 2025-08-04
### Other
- should be space instead
## [0.1.1] - 2025-08-04
### Fixed

View File

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

View File

@@ -341,7 +341,7 @@ pub async fn apply(input: &str, options: ApplyOptions) -> anyhow::Result<()> {
.map(|i| i.display().to_string())
.collect::<Vec<_>>();
file.write_all(open_files.join(" ").as_bytes())
file.write_all(open_files.join("\n").as_bytes())
.await
.context("write chosen files")?;
file.flush().await.context("flush chosen file")?;