Apply Version Updates From Current Changes (#25)

Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2023-12-13 18:39:49 +02:00
committed by GitHub
parent 7b6cfccd71
commit b73e15a65e
5 changed files with 12 additions and 10 deletions

View File

@@ -1,6 +0,0 @@
---
"nsis_tauri_utils": "patch"
"nsis_process": "patch"
---
Add `FindProcessCurrentUser` and `KillProcessCurrentUser`.

View File

@@ -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.

View File

@@ -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 }

View File

@@ -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.

View File

@@ -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" }