File tree 4 files changed +7
-3
lines changed
pusher_push_notifications
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.0.2] - 2019-01-04
10
+ ### Fixed
11
+ - Relaxed version requirements of dependencies to increase compatibility
12
+
9
13
## [ 1.0.1] - 2018-11-19
10
14
### Fixed
11
15
- Updated requests version to include fix for CVE-2018 -18074
Original file line number Diff line number Diff line change 6
6
import requests
7
7
import six
8
8
9
- SDK_VERSION = '1.0.1 '
9
+ SDK_VERSION = '1.0.2 '
10
10
INTEREST_MAX_LENGTH = 164
11
11
INTEREST_REGEX = re .compile ('^(_|-|=|@|,|\\ .|;|[A-Z]|[a-z]|[0-9])*$' )
12
12
MAX_NUMBER_OF_INTERESTS = 100
Original file line number Diff line number Diff line change 2
2
from codecs import open
3
3
from os import path
4
4
5
- __version__ = '1.0.1 '
5
+ __version__ = '1.0.2 '
6
6
7
7
here = path .abspath (path .dirname (__file__ ))
8
8
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ def test_publish_should_make_correct_http_request(self):
128
128
'content-type' : 'application/json' ,
129
129
'content-length' : '69' ,
130
130
'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 ' ,
132
132
'host' : 'instance_id.pushnotifications.pusher.com' ,
133
133
},
134
134
)
You can’t perform that action at this time.
0 commit comments