Skip to content

Commit

Permalink
Merge branch '2.0-release'
Browse files Browse the repository at this point in the history
  • Loading branch information
judy2k committed Oct 19, 2017
2 parents f831aa3 + c2eac94 commit 5db95e7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Development
# 2.0.0
* Drop support for Python 3.3 (in line with the cryptography library we depend upon)
* Ensure timestamp is added the params list if signing requests
* Avoid value injection in signature auth.
* Add support for different hashes for signature generation (thanks @trancee!)
* Tests ported to pytest

# 1.5.0

Expand Down
2 changes: 1 addition & 1 deletion nexmo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
else:
string_types = (unicode, str)

__version__ = '1.5.0'
__version__ = '2.0.0'


class Error(Exception):
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ max-line-length=120

[coverage:run]
source= nexmo

[bdist_wheel]
universal=1

0 comments on commit 5db95e7

Please sign in to comment.