diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d88a45e..5064b23 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ~~~~~~~~~ +1.9.9 - 2023-04-03 +------------------ + +* Prevent situation in which slug could end in dash or underscore +* Remove support for end-of-life Python & Django versions + 1.9.8 - 2020-07-22 ------------------ diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 2dc5c14..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,4 +0,0 @@ -Release type: patch - -* Prevent situation in which slug could end in dash or underscore -* Remove support for end-of-life Python & Django versions diff --git a/autoslug/__init__.py b/autoslug/__init__.py index 636cabc..aaf2857 100644 --- a/autoslug/__init__.py +++ b/autoslug/__init__.py @@ -10,5 +10,5 @@ from autoslug.fields import AutoSlugField -__version__ = '1.9.8' +__version__ = '1.9.9' __all__ = ['AutoSlugField'] diff --git a/pyproject.toml b/pyproject.toml index dcbefa6..357cbd1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-autoslug" -version = "1.9.8" +version = "1.9.9" description = "AutoSlugField for Django" authors = ["Justin Mayer "] readme = "README.rst"