We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f831aa3 + c2eac94 commit 5db95e7Copy full SHA for 5db95e7
CHANGES.md
@@ -1,6 +1,9 @@
1
-# Development
+# 2.0.0
2
* Drop support for Python 3.3 (in line with the cryptography library we depend upon)
3
* 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
7
8
# 1.5.0
9
nexmo/__init__.py
@@ -15,7 +15,7 @@
15
else:
16
string_types = (unicode, str)
17
18
-__version__ = '1.5.0'
+__version__ = '2.0.0'
19
20
21
class Error(Exception):
setup.cfg
@@ -8,3 +8,6 @@ max-line-length=120
[coverage:run]
10
source= nexmo
11
+
12
+[bdist_wheel]
13
+universal=1
0 commit comments