diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ff7798..5ae8c3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ and `Removed`. ## [Unreleased] +## [0.2.1] - 2021-09-28 + +## Packaging +- `wgpu` renderer is not the default renderer (you don't need to add `--features wgpu` if you want to build UAD with `wgpu`) + +### Fixed +- Exported selection not found (#35) + ## [0.2] - 2021-09-26 ### Added diff --git a/src/core/utils.rs b/src/core/utils.rs index 1864e3d..b58ef2c 100644 --- a/src/core/utils.rs +++ b/src/core/utils.rs @@ -28,7 +28,7 @@ pub async fn export_selection(packages: Vec) -> Result .collect::>() .join("\n"); - match fs::write("uad_selection.txt", selected) { + match fs::write("uad_exported_selection.txt", selected) { Ok(_) => Ok(true), Err(err) => Err(err.to_string()) }