Skip to content

Commit 1209b3e

Browse files
Prepare 3.3.1 (#199)
* Prepare 3.3.1 * Bump to version 3.3.1 Co-authored-by: Pusher CI <[email protected]>
1 parent c2069e0 commit 1209b3e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.3.1
4+
5+
- [ADDED] Allow Client to accept float as a timeout
6+
- [CHANGED] the maximum event payload size permitted by this library has been increased. This change affects the library only: the Channels API still maintains a 10kb size limit and will return an error if the payload is too large.
7+
38
## 3.3.0
49

510
- [ADDED] terminate_user_connections method

pusher/util.py

-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@
1717
pusher_url_re = re.compile(r'\A(http|https)://(.*):(.*)@(.*)/apps/([0-9]+)\Z')
1818
socket_id_re = re.compile(r'\A\d+\.\d+\Z')
1919

20-
2120
if sys.version_info < (3,):
2221
text = 'a unicode string'
2322
else:
2423
text = 'a string'
2524

26-
2725
if sys.version_info < (3,):
2826
byte_type = 'a python2 str'
2927
else:

pusher/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Don't change the format of this line: the version is extracted by ../setup.py
2-
VERSION = '3.3.0'
2+
VERSION = '3.3.1'

0 commit comments

Comments
 (0)