summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-11-18 14:03:48 -0500
committerVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-11-18 14:03:48 -0500
commit247fe299c524f48adb94325ce79c84d87fbd0197 (patch)
tree9580c64defd0891e5ce99861195e37a1c8899929
parenta229e483b6f82f36600e73e7a2fb62dc2f5e7ed3 (diff)
downloadpython-slugify-247fe299c524f48adb94325ce79c84d87fbd0197.tar.gz
drop py 3.6, add py 3.11, upversionv7.0.0
-rw-r--r--CHANGELOG.md4
-rw-r--r--README.md1
-rw-r--r--slugify/__version__.py2
3 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2ba0bb3..7e32d42 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 7.0.0
+
+- Drop python 3.6, add python 3.11 (@hugovk - thx)
+
## 6.1.2
- Reintroduce the cli options
diff --git a/README.md b/README.md
index f93afee..2514fc5 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,7 @@ However, there is an alternative decoding package called [Unidecode](https://git
- Python `2.7` <-> python-slugify `< 5.0.0`
- Python `3.6+` <-> python-slugify `>= 5.0.0`
+- Python `3.7+` <-> python-slugify `>= 7.0.0`
# How to install
diff --git a/slugify/__version__.py b/slugify/__version__.py
index 55abc97..184339a 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.1.2'
+__version__ = '7.0.0'