File tree Expand file tree Collapse file tree 4 files changed +27
-23
lines changed Expand file tree Collapse file tree 4 files changed +27
-23
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ Changelog
5
5
unreleased
6
6
==========
7
7
8
+ 3.0.0 2022-01-22
9
+ ================
10
+
8
11
* Added support for Django 3.2
9
12
* Drop support for python 3.5 and 3.6
10
13
Original file line number Diff line number Diff line change 1
- __version__ = '2 .0.0'
1
+ __version__ = '3 .0.0'
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 2 .0.0
3
- commit = False
2
+ current_version = 3 .0.0
3
+ commit = True
4
4
tag = False
5
5
6
6
[bumpversion:file:setup.py]
@@ -12,33 +12,33 @@ search = __version__ = '{current_version}'
12
12
replace = __version__ = ' {new_version}'
13
13
14
14
[bumpversion:file:CHANGELOG.rst]
15
- search =
15
+ search =
16
16
unreleased
17
17
==========
18
- replace =
18
+ replace =
19
19
unreleased
20
20
==========
21
-
21
+
22
22
{new_version} {utcnow:%%Y-%%m-%%d}
23
- ================
23
+ ================
24
24
25
25
[flake8]
26
26
max-line-length = 119
27
- exclude =
28
- *.egg-info,
29
- .eggs,
30
- .env,
31
- .git,
32
- .settings,
33
- .tox,
34
- .venv,
35
- build,
36
- data,
37
- dist,
38
- docs/conf.py,
39
- *migrations*,
40
- requirements,
41
- tmp
27
+ exclude =
28
+ *.egg-info,
29
+ .eggs,
30
+ .env,
31
+ .git,
32
+ .settings,
33
+ .tox,
34
+ .venv,
35
+ build,
36
+ data,
37
+ dist,
38
+ docs/conf.py,
39
+ *migrations*,
40
+ requirements,
41
+ tmp
42
42
43
43
[isort]
44
44
line_length = 119
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
from pathlib import Path
3
+
3
4
from setuptools import find_packages , setup
4
5
5
6
36
37
37
38
setup (
38
39
name = 'django-sekizai' ,
39
- version = '2 .0.0' ,
40
+ version = '3 .0.0' ,
40
41
author = 'Jonas Obrist' ,
41
42
author_email = 'ojiidotch@gmail.com' ,
42
43
maintainer = 'Django CMS Association and contributors' ,
You can’t perform that action at this time.
0 commit comments