Skip to content

Commit ed52906

Browse files
committed
Bump version to 0.10.1
1 parent b612c4c commit ed52906

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pusher_push_notifications/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import requests
77
import six
88

9-
SDK_VERSION = '0.10.0'
9+
SDK_VERSION = '0.10.1'
1010
INTEREST_MAX_LENGTH = 164
1111
INTEREST_REGEX = re.compile('^(_|-|=|@|,|\\.|;|[A-Z]|[a-z]|[0-9])*$')
1212
MAX_NUMBER_OF_INTERESTS = 100

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from codecs import open
33
from os import path
44

5-
__version__ = '0.10.0'
5+
__version__ = '0.10.1'
66

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

tests/test_push_notifications.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def test_publish_should_make_correct_http_request(self):
128128
'content-type': 'application/json',
129129
'content-length': '69',
130130
'authorization': 'Bearer SECRET_KEY',
131-
'x-pusher-library': 'pusher-push-notifications-python 0.10.0',
131+
'x-pusher-library': 'pusher-push-notifications-python 0.10.1',
132132
'host': 'instance_id.pushnotifications.pusher.com',
133133
},
134134
)
@@ -454,4 +454,5 @@ def test_publish_should_error_correctly_if_error_not_json(self):
454454
},
455455
},
456456
)
457-
self.assertIn('Unknown error: no description', str(e.exception))
457+
self.assertIn('Unknown error: no description', str(e.exception))
458+

0 commit comments

Comments
 (0)