Skip to content

Commit

Permalink
Bump version to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlloyd committed Jan 16, 2019
1 parent 7aa522c commit ea0b306
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.3] - 2019-01-16
### Fixed
- Updated python runtime version requirements in setup.py to reflect the versions
we actually support.

## [1.0.2] - 2019-01-04
### Fixed
- Relaxed version requirements of dependencies to increase compatibility
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 @@ -6,7 +6,7 @@
import requests
import six

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

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

0 comments on commit ea0b306

Please sign in to comment.