Skip to content

Commit

Permalink
Set version to 4.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
niwinz committed Jan 2, 2017
1 parent 984bf24 commit e0aaa1f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
Changelog
=========

Version 4.7.0
-------------

Date: 2017-01-02

- Add the ability to enable write to slave when master is not available.
- Add `itersize` parameter to `delete_pattern`.


Version 4.6.0
-------------

Date: unreleased
Date: 2016-11-02

- Fix incorrect behavior of `clear()` method.

Expand Down
2 changes: 1 addition & 1 deletion django_redis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

VERSION = (4, 6, 0)
VERSION = (4, 7, 0)
__version__ = '.'.join(map(str, VERSION))


Expand Down
6 changes: 3 additions & 3 deletions doc/content.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
django-redis documentation
==========================
Andrey Antukh, <niwi@niwi.be>
4.6.0
4.7.0
:toc: left
:numbered:
:source-highlighter: pygments
Expand Down Expand Up @@ -31,14 +31,14 @@ Because:
- Facilities for raw access to Redis client/connection pool.
- Highly configurable (can emulate memcached exception behavior, for example).
- Unix sockets supported by default.
- With support for python 2.7, 3.4 and 3.5
- With support for python 2.7, 3.4, 3.5 and 3.6
Supported django-redis versions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- Supported stable version: *4.6.0*
- Supported stable version: *4.7.0*
- Supported stable version: *3.8.4*
Expand Down

0 comments on commit e0aaa1f

Please sign in to comment.