Skip to content

Commit 5db95e7

Browse files
committed
Merge branch '2.0-release'
2 parents f831aa3 + c2eac94 commit 5db95e7

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
# Development
1+
# 2.0.0
22
* Drop support for Python 3.3 (in line with the cryptography library we depend upon)
33
* Ensure timestamp is added the params list if signing requests
4+
* Avoid value injection in signature auth.
5+
* Add support for different hashes for signature generation (thanks @trancee!)
6+
* Tests ported to pytest
47

58
# 1.5.0
69

nexmo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
else:
1616
string_types = (unicode, str)
1717

18-
__version__ = '1.5.0'
18+
__version__ = '2.0.0'
1919

2020

2121
class Error(Exception):

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ max-line-length=120
88

99
[coverage:run]
1010
source= nexmo
11+
12+
[bdist_wheel]
13+
universal=1

0 commit comments

Comments
 (0)