Skip to content

Commit

Permalink
Merge pull request #91 from alphagov/security-fix-pyjwt
Browse files Browse the repository at this point in the history
Security fix for pyJWT
  • Loading branch information
leohemsted authored Dec 22, 2017
2 parents 30623d1 + f24722e commit 2960dbf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion notifications_python_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
# -- http://semver.org/

__version__ = '4.7.0'
__version__ = '4.7.1'

from notifications_python_client.errors import REQUEST_ERROR_STATUS_CODE, REQUEST_ERROR_MESSAGE

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests>=2.0.0
PyJWT>=1
PyJWT>=1.5.1
docopt>=0.3.0
monotonic>=0.1
future
2 changes: 1 addition & 1 deletion tests/notifications_python_client/test_base_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ def test_user_agent_is_set(base_client, rmock):

base_client.request('GET', '/')

assert rmock.last_request.headers.get("User-Agent") == "NOTIFY-API-PYTHON-CLIENT/4.7.0"
assert rmock.last_request.headers.get("User-Agent") == "NOTIFY-API-PYTHON-CLIENT/4.7.1"

0 comments on commit 2960dbf

Please sign in to comment.