Skip to content

Commit 7eacbaf

Browse files
committed
Bump to version 1.0.2
1 parent 7e1386a commit 7eacbaf

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [1.0.2] - 2019-01-04
10+
### Fixed
11+
- Relaxed version requirements of dependencies to increase compatibility
12+
913
## [1.0.1] - 2018-11-19
1014
### Fixed
1115
- Updated requests version to include fix for CVE-2018-18074

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 = '1.0.1'
9+
SDK_VERSION = '1.0.2'
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__ = '1.0.1'
5+
__version__ = '1.0.2'
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 1.0.1',
131+
'x-pusher-library': 'pusher-push-notifications-python 1.0.2',
132132
'host': 'instance_id.pushnotifications.pusher.com',
133133
},
134134
)

0 commit comments

Comments
 (0)