Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlloyd committed Feb 6, 2019
1 parent 047b195 commit 5504ebd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.1.0]
### Added
- Support for "Authenticated Users" feature: `publish_to_users`, `generate_token` and `delete_user`

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 @@ -12,7 +12,7 @@
import six
from six.moves import urllib

SDK_VERSION = '1.0.3'
SDK_VERSION = '1.1.0'

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__ = '1.0.3'
__version__ = '1.1.0'

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 1.0.3',
'x-pusher-library': 'pusher-push-notifications-python 1.1.0',
'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 1.0.3',
'x-pusher-library': 'pusher-push-notifications-python 1.1.0',
'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 1.0.3',
'x-pusher-library': 'pusher-push-notifications-python 1.1.0',
'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 1.0.3',
'x-pusher-library': 'pusher-push-notifications-python 1.1.0',
'host': 'instance_id.pushnotifications.pusher.com',
},
)
Expand Down

0 comments on commit 5504ebd

Please sign in to comment.