File tree 3 files changed +5
-4
lines changed
pusher_push_notifications
3 files changed +5
-4
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.10.0 '
9
+ SDK_VERSION = '0.10.1 '
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.10.0 '
5
+ __version__ = '0.10.1 '
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 0.10.0 ' ,
131
+ 'x-pusher-library' : 'pusher-push-notifications-python 0.10.1 ' ,
132
132
'host' : 'instance_id.pushnotifications.pusher.com' ,
133
133
},
134
134
)
@@ -454,4 +454,5 @@ def test_publish_should_error_correctly_if_error_not_json(self):
454
454
},
455
455
},
456
456
)
457
- self .assertIn ('Unknown error: no description' , str (e .exception ))
457
+ self .assertIn ('Unknown error: no description' , str (e .exception ))
458
+
You can’t perform that action at this time.
0 commit comments