File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
pusher_push_notifications Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
import requests
7
7
import six
8
8
9
- SDK_VERSION = '0.9.2 '
9
+ SDK_VERSION = '0.10.0 '
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__ = '0.9.2 '
5
+ __version__ = '0.10.0 '
6
6
7
7
here = path .abspath (path .dirname (__file__ ))
8
8
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ def test_publish_should_make_correct_http_request(self):
109
109
'content-type' : 'application/json' ,
110
110
'content-length' : '69' ,
111
111
'authorization' : 'Bearer SECRET_KEY' ,
112
- 'x-pusher-library' : 'pusher-push-notifications-python 0.9.2 ' ,
112
+ 'x-pusher-library' : 'pusher-push-notifications-python 0.10.0 ' ,
113
113
'host' : 'instance_id.pushnotifications.pusher.com' ,
114
114
},
115
115
)
You can’t perform that action at this time.
0 commit comments