Skip to content

Commit

Permalink
build: 3.0 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb authored Sep 1, 2022
1 parent 8a1c3ac commit 4af8fbe
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 21 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ Changelog
unreleased
==========

3.0.0 2022-09-01
================

* Added support for djangocms-static-ace to serve the ace code editor locally
* Added support for Django 3.2
* Dropped support for Python 3.7
* Dropped support for Django 3.0 and 3.1

2.0.0 (2020-09-02)
==================
Expand Down
2 changes: 1 addition & 1 deletion djangocms_bootstrap4/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.0'
__version__ = '3.0.0'
40 changes: 20 additions & 20 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 3.0.0
commit = True
tag = False

Expand All @@ -8,34 +8,34 @@ search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bumpversion:file:CHANGELOG.rst]
search =
search =
unreleased
==========
replace =
replace =
unreleased
==========

{new_version} {utcnow:%%Y-%%m-%%d}
================

[flake8]
max-line-length = 119
exclude =
*.egg-info,
.eggs,
.env,
.git,
.settings,
.tox,
.venv,
build,
data,
dist,
docs,
*migrations*,
node_modules,
requirements,
tmp
exclude =
*.egg-info,
.eggs,
.env,
.git,
.settings,
.tox,
.venv,
build,
data,
dist,
docs,
*migrations*,
node_modules,
requirements,
tmp

[isort]
line_length = 119
Expand Down

0 comments on commit 4af8fbe

Please sign in to comment.