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 1
1
CHANGELOG
2
2
=========
3
3
4
- master
4
+ Version 0.9
5
5
-----------
6
6
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
8
10
- Confirm support of Python 3.7
9
11
- Drop support of Django 1.8
10
12
- Drop support of Django 1.10
Original file line number Diff line number Diff line change 21
21
# built documents.
22
22
#
23
23
# The short X.Y version.
24
- version = '0.8 '
24
+ version = '0.9 '
25
25
# The full version, including alpha/beta/rc tags.
26
- release = '0.8 .0'
26
+ release = '0.9 .0'
27
27
28
28
# List of directories, relative to source directory, that shouldn't be searched
29
29
# for source files.
Original file line number Diff line number Diff line change 36
36
from .pinning import this_thread_is_pinned , db_write # noqa
37
37
38
38
39
+ VERSION = (0 , 9 , 0 )
40
+ __version__ = '.' .join (map (str , VERSION ))
41
+
39
42
DEFAULT_DB_ALIAS = 'default'
40
43
41
44
Original file line number Diff line number Diff line change 3
3
4
4
setup (
5
5
name = 'django-multidb-router' ,
6
- version = '0.8 ' ,
6
+ version = '0.9 ' ,
7
7
description = 'Round-robin multidb router for Django.' ,
8
8
long_description = open ('README.rst' ).read (),
9
9
author = 'Jeff Balogh' ,
You can’t perform that action at this time.
0 commit comments