Skip to content

Commit 60a2447

Browse files
committedSep 24, 2021
Bump version and update changelog
1 parent 83d6023 commit 60a2447

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed
 

‎arch/PKGBUILD

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Maintainer: Proton Technologies AG <opensource@proton.me>
22
pkgname=python-proton-client
3-
pkgver=0.6.1
4-
pkgrel=4
3+
pkgver=0.7.0
4+
pkgrel=1
55
pkgdesc="Safely login with ProtonVPN credentials to connect to Proton."
66
arch=("any")
77
url="https://github.com/ProtonMail/proton-python-client"
88
license=("GPL3")
99
groups=("ProtonVPN")
1010
depends=("python-requests" "python-bcrypt" "python-gnupg" "python-pyopenssl" "python-dnspython")
1111
makedepends=("python-setuptools")
12-
conflicts=("python-protonvpn-nm-lib<3.4.1")
12+
conflicts=("python-protonvpn-nm-lib<3.5.0")
1313
source=("$pkgname.tar.gz")
1414
sha256sums=(.)
1515
validpgpkeys=("A884 41BD 4864 F95B EE08 E63A 71EB 4740 1994 0E11")

‎debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
proton-python-client (0.7.0-1) unstable; urgency=medium
2+
3+
* Feature: Request human verification
4+
5+
-- Proton Technologies AG <opensource@proton.me> Fri, 24 Sep 2021 11:30:00 +0100
6+
17
proton-python-client (0.6.1-4) unstable; urgency=medium
28

39
* Feature: Alternative Routing

‎debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Architecture: all
1111
Homepage: https://github.com/ProtonMail/proton-python-client
1212
Section: net
1313
Depends: ${python3:Depends}, ${misc:Depends}, python3-bcrypt, python3-gnupg, python3-openssl, python3-dnspython, python3-requests (>= 2.16.0)
14-
Breaks: python3-protonvpn-nm-lib (<< 3.4.1)
14+
Breaks: python3-protonvpn-nm-lib (<< 3.5.0)
1515
Description: Proton SRP (Python 3)
1616
Safely login with ProtonVPN credentials to connect to Proton.
1717
.

‎proton/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "0.6.1"
1+
VERSION = "0.7.0"
22
DEFAULT_TIMEOUT = (3.05, 27)
33
PUBKEY_HASH_DICT = {
44
"api.protonvpn.ch": [

‎rpmbuild/SPECS/python3-proton-client.spec

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%define unmangled_name proton-client
2-
%define version 0.6.1
3-
%define release 4
2+
%define version 0.7.0
3+
%define release 1
44

55
Prefix: %{_prefix}
66

@@ -23,7 +23,7 @@ Requires: python3-requests
2323
Requires: python3-pyOpenSSL
2424
Requires: python3-bcrypt
2525
Requires: python3-gnupg
26-
Conflicts: python3-protonvpn-nm-lib < 3.4.1
26+
Conflicts: python3-protonvpn-nm-lib < 3.5.0
2727

2828
%{?python_disable_dependency_generator}
2929

@@ -49,6 +49,9 @@ rm -rf $RPM_BUILD_ROOT
4949
%defattr(-,root,root)
5050

5151
%changelog
52+
* Fri Sep 24 2021 Proton Technologies AG <opensource@proton.me> 0.7.0-1
53+
- Feature: Request human verification
54+
5255
* Thu Jul 08 2021 Proton Technologies AG <opensource@proton.me> 0.6.1-4
5356
- Feature: Alternative Routing
5457

0 commit comments

Comments
 (0)
Please sign in to comment.