We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38272f2 commit c18c397Copy full SHA for c18c397
CHANGES.txt
@@ -1,8 +1,10 @@
1
Changelog
2
=========
3
4
-UNRELEASED
5
-----------
+Version 4.9.0
+-------------
6
+
7
+Date: 2018-03-01
8
9
- Add testing and support for Django 2.0. No actual code changes were required.
10
- Escape `KEY_PREFIX` and `VERSION` when used in glob expressions.
@@ -15,6 +17,7 @@ UNRELEASED
15
17
- Fix `add()` with a negative timeout to not store key (it is immediately
16
18
invalid).
19
- Remove support for Django < 1.11.
20
+- Add support for atomic incr if key is not set.
21
22
23
Version 4.8.0
django_redis/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-VERSION = (4, 8, 0)
+VERSION = (4, 9, 0)
__version__ = '.'.join(map(str, VERSION))
0 commit comments