Release 2.4.4

This commit is contained in:
Kevin Yue 2025-02-09 14:30:40 +00:00
parent fa2849a080
commit dc9480fd71
No known key found for this signature in database
GPG Key ID: 7D27E893D5416DE5
3 changed files with 14 additions and 9 deletions

16
Cargo.lock generated
View File

@ -176,7 +176,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
[[package]]
name = "auth"
version = "2.4.3"
version = "2.4.4"
dependencies = [
"anyhow",
"block2",
@ -642,7 +642,7 @@ dependencies = [
[[package]]
name = "common"
version = "2.4.3"
version = "2.4.4"
dependencies = [
"is_executable",
]
@ -1625,7 +1625,7 @@ dependencies = [
[[package]]
name = "gpapi"
version = "2.4.3"
version = "2.4.4"
dependencies = [
"anyhow",
"base64 0.22.1",
@ -1662,7 +1662,7 @@ dependencies = [
[[package]]
name = "gpauth"
version = "2.4.3"
version = "2.4.4"
dependencies = [
"anyhow",
"auth",
@ -1681,7 +1681,7 @@ dependencies = [
[[package]]
name = "gpclient"
version = "2.4.3"
version = "2.4.4"
dependencies = [
"anyhow",
"clap",
@ -1703,7 +1703,7 @@ dependencies = [
[[package]]
name = "gpgui-helper"
version = "2.4.3"
version = "2.4.4"
dependencies = [
"anyhow",
"clap",
@ -1721,7 +1721,7 @@ dependencies = [
[[package]]
name = "gpservice"
version = "2.4.3"
version = "2.4.4"
dependencies = [
"anyhow",
"axum",
@ -2987,7 +2987,7 @@ dependencies = [
[[package]]
name = "openconnect"
version = "2.4.3"
version = "2.4.4"
dependencies = [
"cc",
"common",

View File

@ -11,7 +11,7 @@ members = [
[workspace.package]
rust-version = "1.80"
version = "2.4.3"
version = "2.4.4"
authors = ["Kevin Yue <k3vinyue@gmail.com>"]
homepage = "https://github.com/yuezk/GlobalProtect-openconnect"
edition = "2021"

View File

@ -1,5 +1,10 @@
# Changelog
## 2.4.4 - 2025-02-09
- GUI: fix multiple tray icons issue (fix [#464](https://github.com/yuezk/GlobalProtect-openconnect/issues/464))
- CLI: check the cli running state before running the `gpclient` command (fix [#447](https://github.com/yuezk/GlobalProtect-openconnect/issues/447))
## 2.4.3 - 2025-01-21
- Do not use static default value for `--os-version` option.