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
55unreleased
66==========
77
8+ 3.0.0 2022-01-22
9+ ================
10+
811* Added support for Django 3.2
912* Drop support for python 3.5 and 3.6
1013
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 11[bumpversion]
2- current_version = 2 .0.0
3- commit = False
2+ current_version = 3 .0.0
3+ commit = True
44tag = False
55
66[bumpversion:file:setup.py]
@@ -12,33 +12,33 @@ search = __version__ = '{current_version}'
1212replace = __version__ = ' {new_version}'
1313
1414[bumpversion:file:CHANGELOG.rst]
15- search =
15+ search =
1616 unreleased
1717 ==========
18- replace =
18+ replace =
1919 unreleased
2020 ==========
21-
21+
2222 {new_version} {utcnow:%%Y-%%m-%%d}
23- ================
23+ ================
2424
2525[flake8]
2626max-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
4242
4343[isort]
4444line_length = 119
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22from pathlib import Path
3+
34from setuptools import find_packages , setup
45
56
3637
3738setup (
3839 name = 'django-sekizai' ,
39- version = '2 .0.0' ,
40+ version = '3 .0.0' ,
4041 author = 'Jonas Obrist' ,
4142 author_email = 'ojiidotch@gmail.com' ,
4243 maintainer = 'Django CMS Association and contributors' ,
You can’t perform that action at this time.
0 commit comments