Skip to content

Commit 032af0b

Browse files
committed
Version bump
1 parent ff27825 commit 032af0b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGES

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@
3333
0.5.0
3434
* Add support for Django 1.10 and 1.11 by using the new style middleware https://github.com/streeter/django-db-readonly/pull/16
3535

36-
(History beyond 0.5.0 is not present)
36+
0.6.0
37+
* Improve parsing of write queries to handle more types and multiple queries per statement https://github.com/streeter/django-db-readonly/pull/17
38+
39+
(History beyond 0.6.0 is not present)

readonly/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from readonly.exceptions import DatabaseWriteDenied
1717

18-
VERSION = (0, 5, 0)
18+
VERSION = (0, 6, 0)
1919
__version__ = VERSION
2020

2121
logger = getLogger('django.db.backends')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import setup
77
from setuptools.command.test import test
88

9-
version = '0.5.0'
9+
version = '0.6.0'
1010

1111

1212
if sys.argv[-1] == 'publish':

0 commit comments

Comments
 (0)