summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-02-16 17:41:14 -0500
committerVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-02-16 17:41:14 -0500
commitd8c9d8a1220743f28f98de60a3eed9cbae30c624 (patch)
tree888711232e1b5c92f6757c38ed963dbf2a8a5849
parentdce218991ddf16d916501fb6f72980f9ca0c892a (diff)
downloadpython-slugify-d8c9d8a1220743f28f98de60a3eed9cbae30c624.tar.gz
regex_patter to disallow
-rw-r--r--CHANGELOG.md5
-rw-r--r--slugify/__version__.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8053b87..95ad243 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 6.0.1
+
+- Rework regex_pattern to mean the opposite (disallowed chars instead of allowed)
+- Thanks to @yyyyyyyan for the initial PR followed by the final PR by @mrezzamoradi
+
## 6.0.0
- Enable github action
diff --git a/slugify/__version__.py b/slugify/__version__.py
index 4e5471b..1eedf44 100644
--- a/slugify/__version__.py
+++ b/slugify/__version__.py
@@ -5,4 +5,4 @@ __description__ = 'A Python slugify application that also handles Unicode'
__url__ = 'https://github.com/un33k/python-slugify'
__license__ = 'MIT'
__copyright__ = 'Copyright 2022 Val Neekman @ Neekware Inc.'
-__version__ = '6.0.0'
+__version__ = '6.0.1'