Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add text/markdown in setup.py #320

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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="[email protected]",
license="GPLv3",
Expand Down