diff --git a/.bumpversion.cfg b/.bumpversion.cfg index badefd6..5e5e411 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1.dev0 +current_version = 0.7.1 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.?)(?P[a-z]*)(?P\d*) serialize = {major}.{minor}.{patch}.{release}{relver} diff --git a/HISTORY.rst b/HISTORY.rst index 6089f9a..d0e3b36 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,21 @@ History .. towncrier release notes start +0.7.1 (2023-08-11) +================== + +Features +-------- + +- Add missing subpath_match and catchall_redirect fields in admin (#44) + + +Bugfixes +-------- + +- Fix django-multisite compatibility issue (#47) + + 0.7.0 (2023-08-09) ================== diff --git a/changes/44.feature b/changes/44.feature deleted file mode 100644 index c4b4c0c..0000000 --- a/changes/44.feature +++ /dev/null @@ -1 +0,0 @@ -Add missing subpath_match and catchall_redirect fields in admin diff --git a/changes/47.bugfix b/changes/47.bugfix deleted file mode 100644 index 749d3cc..0000000 --- a/changes/47.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix django-multisite compatibility issue diff --git a/djangocms_redirect/__init__.py b/djangocms_redirect/__init__.py index 4e480f2..a5f830a 100644 --- a/djangocms_redirect/__init__.py +++ b/djangocms_redirect/__init__.py @@ -1 +1 @@ -__version__ = "0.7.1.dev0" +__version__ = "0.7.1"