Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
BINARY_NAME=pangolin
OUTPUT_DIR=bin

VERSION ?= 0.15.1
VERSION ?= 0.16.0
LDFLAGS = -s -w -X github.com/fosrl/cli/internal/version.Version=$(VERSION)

all: clean build
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is the official Pangolin CLI tool.

Since there isn't an official GUI application for Linux, this CLI serves as the official way to connect to Pangolin VPN on Linux.
Since there isn't an official GUI application for Linux, this CLI serves as the official Pangolin client for Linux devices.

This client can be used with both:

Expand Down
2 changes: 1 addition & 1 deletion cmd/resetdns/resetdns_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ active; use --force to override that check.`,
}

if os.Geteuid() != 0 {
logger.Warning("DNS reset typically requires root privileges; rerun with sudo if it fails")
return errors.New("reset-dns must be run as root (or with sudo) to modify system DNS settings")
}

if err := dnsOverride.ForceResetDNS(interfaceName); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion internal/version/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ package version
// This value can be overridden at build time using ldflags:
//
// go build -ldflags "-X github.com/fosrl/cli/internal/version.Version=<version>"
var Version = "0.15.1"
var Version = "0.16.0"
2 changes: 1 addition & 1 deletion pangolin-cli.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Package Name="Pangolin CLI"
Language="1033"
Version="0.15.1"
Version="0.16.0"
Manufacturer="Fossorial"
UpgradeCode="35A1E3C4-C273-4334-9DF3-57408E83012E"
Compressed="yes">
Expand Down