Skip to content

Commit 16b1162

Browse files
committed
Releasing 2.3.0
1 parent b727a4f commit 16b1162

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
2.3.0 (2018-08-16)
2+
------------------
3+
4+
* Messages to the same process (with the same prefix) are now bundled together
5+
in a single message for efficiency.
6+
7+
* Connections to Redis are now kept in a connection pool with significantly
8+
improved performance as a result. This change required lists to be changed
9+
from oldest-first to newest-first, so immediately after any upgrade,
10+
existing messages in Redis will be drained in reverse order until your
11+
expiry time (normally 60 seconds) has passed. After this, behaviour will
12+
be normal again.
13+
14+
115
2.2.1 (2018-05-17)
216
------------------
317

channels_redis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.2.1"
1+
__version__ = "2.3.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
crypto_requires = ["cryptography>=1.3.0"]
1111

1212
test_requires = crypto_requires + [
13-
"pytest>=3.0",
13+
"pytest~=3.6.0",
1414
"pytest-asyncio~=0.8",
1515
"async_generator~=1.8",
1616
"async-timeout~=2.0",

0 commit comments

Comments
 (0)