summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2021-05-05 19:22:50 -0400
committerVal Neekman <val@neekware.com>2021-05-05 19:22:50 -0400
commit377c6797a150151d07fabea77146be5bc9a732a5 (patch)
tree9e53b115e551c10214b54cd989fca70de81dc7df
parent319559cb43f239ac0d3bc7b975a78059bf4a1086 (diff)
downloadpython-slugify-377c6797a150151d07fabea77146be5bc9a732a5.tar.gz
clean up, post 2.7,3.5 drop
-rw-r--r--.vscode/settings.json3
-rw-r--r--CHANGELOG.md4
-rw-r--r--slugify/__init__.py2
3 files changed, 6 insertions, 3 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 32531ea..2ab09c1 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,5 +1,4 @@
{
"python.linting.pylintEnabled": false,
- "restructuredtext.confPath": "",
- "python.pythonPath": "/usr/local/opt/python/bin/python3.6"
+ "python.pythonPath": "/usr/bin/python3",
} \ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 82ae711..d7d425b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 5.0.1
+
+- Drop support for python 2.7, 3.5 & tox, clean up
+
## 5.0.0
- Add support for Py 3.9 - added tox (@jon-betts - Thx)
diff --git a/slugify/__init__.py b/slugify/__init__.py
index 3a11fd2..a1193b8 100644
--- a/slugify/__init__.py
+++ b/slugify/__init__.py
@@ -4,4 +4,4 @@ from .slugify import *
__author__ = 'Val Neekman @ Neekware Inc. [@vneekman]'
__description__ = 'A Python slugify application that also handles Unicode'
-__version__ = '5.0.0'
+__version__ = '5.0.1'