Skip to content

Commit b49d674

Browse files
committed
Prepare version 4.8.1
1 parent f4b20fe commit b49d674

4 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
## Next version (TBD)
1+
## v4.8.1 (2025-09-24)
22
- Enabled SAML SSO authentication for SSL tunnel.
3+
- An installer is now created as part of the release pipeline, with `.run` extension.
4+
- Service and desktop files are modified to point to /usr/bin by default.
35

46
## v4.8.0 (2025-09-08)
57
- Added `transport-type` option to specify the IPSec transport type explicitly.

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["snxcore", "snxctl", "snx-rs", "snx-rs-gui", "i18n"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "4.8.1-pre"
6+
version = "4.8.1"
77
license = "AGPL-3.0"
88
edition = "2024"
99
authors = ["Dmitry Pankratov <dmitry@pankratov.net>"]

scripts/install.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/usr/bin/bash
22

3+
if grep -q '^ID=nixos' /etc/os-release 2>/dev/null; then
4+
echo "Running on NixOS, installation aborted"
5+
exit 1
6+
fi
7+
38
killall snx-rs-gui 2>/dev/null
49
systemctl stop snx-rs 2>/dev/null
510

0 commit comments

Comments
 (0)