Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.
Open
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Table of Contents

- [v2.2.11](#v2211)
- [v2.2.10](#v2210)
- [v2.2.7](#v227)
- [v2.2.6](#v226)
Expand All @@ -17,11 +18,17 @@
- [v2.0.0](#v200)
- [v0.1.0](#v010)

## v2.2.11

- Fix: Include README in setup.py config


## v2.2.10

- Fix: User-Agent format
- Fix: Version update messages and README


## v2.2.7

- Enhancement: Add User-Agent to API requests
Expand Down
2 changes: 1 addition & 1 deletion protonvpn_cli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
OVPN_FILE = os.path.join(CONFIG_DIR, "connect.ovpn")
PASSFILE = os.path.join(CONFIG_DIR, "pvpnpass")
CLIENT_SUFFIX = "plc" # ProtonVPN Linux Community
VERSION = "2.2.10"
VERSION = "2.2.11"
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@
entry_points={
"console_scripts": ["protonvpn = protonvpn_cli.cli:main"]
},
include_package_data=True,
version=version,
description="Linux command-line client for ProtonVPN",
long_description=long_descr,
long_description_content_type="text/markdown",
author="Proton Technologies AG",
author_email="contact@protonvpn.com",
license="GPLv3",
Expand Down