diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c9ee4035..afd65476 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 diff --git a/djangocms_snippet/__init__.py b/djangocms_snippet/__init__.py index 22b8ebf7..6ac45e44 100644 --- a/djangocms_snippet/__init__.py +++ b/djangocms_snippet/__init__.py @@ -1,3 +1,3 @@ -__version__ = '3.0.0' +__version__ = '3.1.0' default_app_config = 'djangocms_snippet.apps.SnippetConfig' diff --git a/setup.cfg b/setup.cfg index 6b0400ed..0a188d47 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.1.0 commit = True tag = False @@ -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,