Skip to content

Commit e6cbe03

Browse files
Merge pull request #12 from pusher/ga-release
Bump version to 1.0.0
2 parents 0cf0307 + 1b3c6cd commit e6cbe03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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.2'
9+
SDK_VERSION = '1.0.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

+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.2'
5+
__version__ = '1.0.0'
66

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

tests/test_push_notifications.py

+1-1
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.2',
131+
'x-pusher-library': 'pusher-push-notifications-python 1.0.0',
132132
'host': 'instance_id.pushnotifications.pusher.com',
133133
},
134134
)

0 commit comments

Comments
 (0)