Skip to content

Commit

Permalink
Bump version to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlloyd committed Feb 2, 2021
1 parent 930b08d commit f3a734f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.0.1] - 2020-02-02
### Fixed
- Updated requirements.txt to reflect compatibility with pyjwt 2

## [2.0.0] - 2019-11-25
### Added
- Support for `HTTP_PROXY` environment variables. This should enable use of the
Expand Down
2 changes: 1 addition & 1 deletion pusher_push_notifications/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import six
from six.moves import urllib

SDK_VERSION = '2.0.0'
SDK_VERSION = '2.0.1'

INTEREST_MAX_LENGTH = 164
INTEREST_REGEX = re.compile('^(_|-|=|@|,|\\.|;|[A-Z]|[a-z]|[0-9])*$')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from codecs import open
from os import path

__version__ = '2.0.0'
__version__ = '2.0.1'

here = path.abspath(path.dirname(__file__))

Expand Down
4 changes: 2 additions & 2 deletions tests/test_interests.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_publish_to_interests_should_make_correct_http_request(self):
'content-type': 'application/json',
'content-length': '69',
'authorization': 'Bearer SECRET_KEY',
'x-pusher-library': 'pusher-push-notifications-python 2.0.0',
'x-pusher-library': 'pusher-push-notifications-python 2.0.1',
'host': 'instance_id.pushnotifications.pusher.com',
},
)
Expand Down Expand Up @@ -128,7 +128,7 @@ def test_deprecated_alias_still_works(self):
'content-type': 'application/json',
'content-length': '69',
'authorization': 'Bearer SECRET_KEY',
'x-pusher-library': 'pusher-push-notifications-python 2.0.0',
'x-pusher-library': 'pusher-push-notifications-python 2.0.1',
'host': 'instance_id.pushnotifications.pusher.com',
},
)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def test_publish_to_users_should_make_correct_http_request(self):
'content-type': 'application/json',
'content-length': '64',
'authorization': 'Bearer SECRET_KEY',
'x-pusher-library': 'pusher-push-notifications-python 2.0.0',
'x-pusher-library': 'pusher-push-notifications-python 2.0.1',
'host': 'instance_id.pushnotifications.pusher.com',
},
)
Expand Down Expand Up @@ -455,7 +455,7 @@ def test_delete_user_should_make_correct_http_request(self):
{
'content-length': '0',
'authorization': 'Bearer SECRET_KEY',
'x-pusher-library': 'pusher-push-notifications-python 2.0.0',
'x-pusher-library': 'pusher-push-notifications-python 2.0.1',
'host': 'instance_id.pushnotifications.pusher.com',
},
)
Expand Down

0 comments on commit f3a734f

Please sign in to comment.