Skip to content

Commit 1a99c17

Browse files
committed
Bump version to 0.10.0
1 parent 9b84d83 commit 1a99c17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pusher_push_notifications/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import requests
77
import six
88

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

setup.py

Lines changed: 1 addition & 1 deletion
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.9.2'
5+
__version__ = '0.10.0'
66

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

tests/test_push_notifications.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def test_publish_should_make_correct_http_request(self):
109109
'content-type': 'application/json',
110110
'content-length': '69',
111111
'authorization': 'Bearer SECRET_KEY',
112-
'x-pusher-library': 'pusher-push-notifications-python 0.9.2',
112+
'x-pusher-library': 'pusher-push-notifications-python 0.10.0',
113113
'host': 'instance_id.pushnotifications.pusher.com',
114114
},
115115
)

0 commit comments

Comments
 (0)