Skip to content

Commit

Permalink
Merge pull request #12 from pusher/ga-release
Browse files Browse the repository at this point in the history
Bump version to 1.0.0
  • Loading branch information
jonathanlloyd authored Jul 31, 2018
2 parents 0cf0307 + 1b3c6cd commit e6cbe03
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pusher_push_notifications/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import requests
import six

SDK_VERSION = '0.10.2'
SDK_VERSION = '1.0.0'
INTEREST_MAX_LENGTH = 164
INTEREST_REGEX = re.compile('^(_|-|=|@|,|\\.|;|[A-Z]|[a-z]|[0-9])*$')
MAX_NUMBER_OF_INTERESTS = 100
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__ = '0.10.2'
__version__ = '1.0.0'

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

Expand Down
2 changes: 1 addition & 1 deletion tests/test_push_notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def test_publish_should_make_correct_http_request(self):
'content-type': 'application/json',
'content-length': '69',
'authorization': 'Bearer SECRET_KEY',
'x-pusher-library': 'pusher-push-notifications-python 0.10.2',
'x-pusher-library': 'pusher-push-notifications-python 1.0.0',
'host': 'instance_id.pushnotifications.pusher.com',
},
)
Expand Down

0 comments on commit e6cbe03

Please sign in to comment.