Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version: 3.0.0 → 3.1.0 #126

Merged
merged 1 commit into from
Sep 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Changelog
unreleased
==========

3.1.0 2022-09-01
================

* Add support for ace editor loaded from static files through djangocms-static-ace
* Add dark mode support

Expand Down
2 changes: 1 addition & 1 deletion djangocms_snippet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '3.0.0'
__version__ = '3.1.0'

default_app_config = 'djangocms_snippet.apps.SnippetConfig'
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.0
current_version = 3.1.0
commit = True
tag = False

Expand All @@ -8,19 +8,19 @@ 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 =
exclude =
*.egg-info,
.eggs,
.env,
Expand Down