diff --git a/.changes/process-currentuser.md b/.changes/process-currentuser.md deleted file mode 100644 index e625a00..0000000 --- a/.changes/process-currentuser.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"nsis_tauri_utils": "patch" -"nsis_process": "patch" ---- - -Add `FindProcessCurrentUser` and `KillProcessCurrentUser`. diff --git a/crates/nsis-process/CHANGELOG.md b/crates/nsis-process/CHANGELOG.md index 9944f0f..fccd88e 100644 --- a/crates/nsis-process/CHANGELOG.md +++ b/crates/nsis-process/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[0.2.2] + +- [`7b6cfcc`](https://www.github.com/tauri-apps/nsis-tauri-utils/commit/7b6cfccd71c04a2ee87d6665b6822ccfe6d389b5)([#24](https://www.github.com/tauri-apps/nsis-tauri-utils/pull/24)) Add `FindProcessCurrentUser` and `KillProcessCurrentUser`. + ## \[0.2.1] - [`92f9264`](https://www.github.com/tauri-apps/nsis-tauri-utils/commit/92f92648b50fd298590570f43ed00de089609536)([#19](https://www.github.com/tauri-apps/nsis-tauri-utils/pull/19)) Skip processes with the same pid as the current installer's process to prevent the installer from killing itself. diff --git a/crates/nsis-process/Cargo.toml b/crates/nsis-process/Cargo.toml index ec9773b..0867d69 100644 --- a/crates/nsis-process/Cargo.toml +++ b/crates/nsis-process/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "nsis-process" -version = "0.2.1" +version = "0.2.2" authors = { workspace = true } edition = { workspace = true } license = { workspace = true } [lib] -crate-type = ["rlib", "cdylib"] +crate-type = [ "rlib", "cdylib" ] [dependencies] pluginapi = { workspace = true } diff --git a/crates/nsis-tauri-utils/CHANGELOG.md b/crates/nsis-tauri-utils/CHANGELOG.md index 8958f9b..b020e2c 100644 --- a/crates/nsis-tauri-utils/CHANGELOG.md +++ b/crates/nsis-tauri-utils/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[0.2.2] + +- [`7b6cfcc`](https://www.github.com/tauri-apps/nsis-tauri-utils/commit/7b6cfccd71c04a2ee87d6665b6822ccfe6d389b5)([#24](https://www.github.com/tauri-apps/nsis-tauri-utils/pull/24)) Add `FindProcessCurrentUser` and `KillProcessCurrentUser`. + ## \[0.2.1] - [`92f9264`](https://www.github.com/tauri-apps/nsis-tauri-utils/commit/92f92648b50fd298590570f43ed00de089609536)([#19](https://www.github.com/tauri-apps/nsis-tauri-utils/pull/19)) Skip processes with the same pid as the current installer's process to prevent the installer from killing itself. diff --git a/crates/nsis-tauri-utils/Cargo.toml b/crates/nsis-tauri-utils/Cargo.toml index 5f64a6f..393dd67 100644 --- a/crates/nsis-tauri-utils/Cargo.toml +++ b/crates/nsis-tauri-utils/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "nsis-tauri-utils" -version = "0.2.1" +version = "0.2.2" authors = { workspace = true } edition = { workspace = true } license = { workspace = true } [lib] -crate-type = ["cdylib"] +crate-type = [ "cdylib" ] [dependencies] nsis-download = { path = "../nsis-download" }