Skip to content

Commit f7ef988

Browse files
Release 3.0 (#113)
* Added github actions * Added codeql analysis * Added docs action * Drop python 3.5 and 3.6 & correct changelog to reflect the unreleased django 3.2 support. * Preparing bumpversion support * Bump version commits enabled. * Bump version: 2.0.0 → 3.0.0 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 9da14bc commit f7ef988

File tree

4 files changed

+27
-23
lines changed

4 files changed

+27
-23
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ Changelog
55
unreleased
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

sekizai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.0'
1+
__version__ = '3.0.0'

setup.cfg

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[bumpversion]
2-
current_version = 2.0.0
3-
commit = False
2+
current_version = 3.0.0
3+
commit = True
44
tag = False
55

66
[bumpversion:file:setup.py]
@@ -12,33 +12,33 @@ search = __version__ = '{current_version}'
1212
replace = __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]
2626
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
4242

4343
[isort]
4444
line_length = 119

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env python
22
from pathlib import Path
3+
34
from setuptools import find_packages, setup
45

56

@@ -36,7 +37,7 @@
3637

3738
setup(
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',

0 commit comments

Comments
 (0)