Skip to content

Commit

Permalink
Prepare 3.3.1 (#199)
Browse files Browse the repository at this point in the history
* Prepare 3.3.1

* Bump to version 3.3.1

Co-authored-by: Pusher CI <[email protected]>
  • Loading branch information
fbenevides and pusher-ci authored Jan 24, 2023
1 parent c2069e0 commit 1209b3e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 3.3.1

- [ADDED] Allow Client to accept float as a timeout
- [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.

## 3.3.0

- [ADDED] terminate_user_connections method
Expand Down
2 changes: 0 additions & 2 deletions pusher/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@
pusher_url_re = re.compile(r'\A(http|https)://(.*):(.*)@(.*)/apps/([0-9]+)\Z')
socket_id_re = re.compile(r'\A\d+\.\d+\Z')


if sys.version_info < (3,):
text = 'a unicode string'
else:
text = 'a string'


if sys.version_info < (3,):
byte_type = 'a python2 str'
else:
Expand Down
2 changes: 1 addition & 1 deletion pusher/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Don't change the format of this line: the version is extracted by ../setup.py
VERSION = '3.3.0'
VERSION = '3.3.1'

0 comments on commit 1209b3e

Please sign in to comment.