Skip to content

Commit

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

## [Unreleased]

## [1.0.2] - 2019-01-04
### Fixed
- Relaxed version requirements of dependencies to increase compatibility

## [1.0.1] - 2018-11-19
### Fixed
- Updated requests version to include fix for CVE-2018-18074
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.1'
SDK_VERSION = '1.0.2'
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.1'
__version__ = '1.0.2'

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

0 comments on commit 7eacbaf

Please sign in to comment.