Skip to content

Commit 1402265

Browse files
markswebfsbraun
authored andcommitted
Bump version: 3.0.0 → 3.1.0 (#126)
1 parent 6163086 commit 1402265

File tree

3 files changed

+52
-2
lines changed

3 files changed

+52
-2
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ Unreleased
6363
* feat: djangocms-versioning support added, including model restructure and configuration
6464
* feat: django-cms v4.0.x support added
6565

66+
3.1.0 2022-09-01
67+
================
68+
6669
* Add support for ace editor loaded from static files through djangocms-static-ace
6770
* Add dark mode support
6871

djangocms_snippet/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
__version__ = '4.1.0'
2-
3-
default_app_config = 'djangocms_snippet.apps.SnippetConfig'

setup.cfg

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
[bumpversion]
2+
current_version = 4.1.0
3+
commit = True
4+
tag = False
5+
6+
[bumpversion:file:djangocms_snippet/__init__.py]
7+
search = __version__ = '{current_version}'
8+
replace = __version__ = '{new_version}'
9+
10+
[bumpversion:file:CHANGELOG.rst]
11+
search =
12+
unreleased
13+
==========
14+
replace =
15+
unreleased
16+
==========
17+
18+
{new_version} {utcnow:%%Y-%%m-%%d}
19+
================
20+
21+
[flake8]
22+
max-line-length = 119
23+
exclude =
24+
*.egg-info,
25+
.eggs,
26+
.env,
27+
.git,
28+
.settings,
29+
.tox,
30+
.venv,
31+
build,
32+
data,
33+
dist,
34+
docs,
35+
*migrations*,
36+
requirements,
37+
tmp
38+
39+
[isort]
40+
line_length = 79
41+
skip = manage.py, *migrations*, .tox, .eggs, data, .venv, .env
42+
include_trailing_comma = true
43+
multi_line_output = 5
44+
lines_after_imports = 2
45+
default_section = THIRDPARTY
46+
sections = FUTURE, STDLIB, DJANGO, CMS, THIRDPARTY, FIRSTPARTY, LOCALFOLDER
47+
known_first_party = djangocms_snippet
48+
known_cms = cms, menus
49+
known_django = django

0 commit comments

Comments
 (0)