File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed
Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
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
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 3636from .pinning import this_thread_is_pinned , db_write # noqa
3737
3838
39+ VERSION = (0 , 9 , 0 )
40+ __version__ = '.' .join (map (str , VERSION ))
41+
3942DEFAULT_DB_ALIAS = 'default'
4043
4144
Original file line number Diff line number Diff line change 33
44setup (
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' ,
You can’t perform that action at this time.
0 commit comments