Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
CHANGELOG
=========

master
Version 0.9
-----------

- Drop support of Python 3.4
- Deprecate master/slave terminology and switch to replica. #44
- Fix bug and warn when REPLICA_DATABASES is not defined. #39
- Drop support of Python 3.4. #43 etc
- Confirm support of Python 3.7
- Drop support of Django 1.8
- Drop support of Django 1.10
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
# built documents.
#
# The short X.Y version.
version = '0.8'
version = '0.9'
# The full version, including alpha/beta/rc tags.
release = '0.8.0'
release = '0.9.0'

# List of directories, relative to source directory, that shouldn't be searched
# for source files.
Expand Down
3 changes: 3 additions & 0 deletions multidb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
from .pinning import this_thread_is_pinned, db_write # noqa


VERSION = (0, 9, 0)
__version__ = '.'.join(map(str, VERSION))

DEFAULT_DB_ALIAS = 'default'


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='django-multidb-router',
version='0.8',
version='0.9',
description='Round-robin multidb router for Django.',
long_description=open('README.rst').read(),
author='Jeff Balogh',
Expand Down