Skip to content

Commit 9296cd3

Browse files
authored
Merge pull request #47 from jsocol/release-0.9
Version 0.9
2 parents 3bb1aab + a1944a3 commit 9296cd3

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
CHANGELOG
22
=========
33

4-
master
4+
Version 0.9
55
-----------
66

7-
- Drop support of Python 3.4
7+
- Deprecate master/slave terminology and switch to replica. #44
8+
- Fix bug and warn when REPLICA_DATABASES is not defined. #39
9+
- Drop support of Python 3.4. #43 etc
810
- Confirm support of Python 3.7
911
- Drop support of Django 1.8
1012
- Drop support of Django 1.10

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
# built documents.
2222
#
2323
# The short X.Y version.
24-
version = '0.8'
24+
version = '0.9'
2525
# The full version, including alpha/beta/rc tags.
26-
release = '0.8.0'
26+
release = '0.9.0'
2727

2828
# List of directories, relative to source directory, that shouldn't be searched
2929
# for source files.

multidb/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
from .pinning import this_thread_is_pinned, db_write # noqa
3737

3838

39+
VERSION = (0, 9, 0)
40+
__version__ = '.'.join(map(str, VERSION))
41+
3942
DEFAULT_DB_ALIAS = 'default'
4043

4144

setup.py

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

44
setup(
55
name='django-multidb-router',
6-
version='0.8',
6+
version='0.9',
77
description='Round-robin multidb router for Django.',
88
long_description=open('README.rst').read(),
99
author='Jeff Balogh',

0 commit comments

Comments
 (0)