summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman (AvidCoder) <un33kvu@gmail.com>2023-01-27 17:53:09 -0500
committerVal Neekman (AvidCoder) <un33kvu@gmail.com>2023-01-27 17:53:09 -0500
commit11e6209bba742675bda4307a65d69c8821fccaee (patch)
treeacb6aa054abeb117bc14a4589745d35ad5cf5180
parent22d7e84b95869dd4300952b88113dd00e53e9ec7 (diff)
downloadpython-slugify-11e6209bba742675bda4307a65d69c8821fccaee.tar.gz
By default, prefer unidecode if installedv8.0.0
-rw-r--r--CHANGELOG.md4
-rw-r--r--README.md2
-rw-r--r--slugify/__version__.py2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7e32d42..e5e9ffb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 8.0.0
+
+- By default, prefer unidecode if installed (@enkidulan - thx)
+
## 7.0.0
- Drop python 3.6, add python 3.11 (@hugovk - thx)
diff --git a/README.md b/README.md
index 26cbc4d..aac2082 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@
This module, by default installs and uses [text-unidecode](https://github.com/kmike/text-unidecode) _(GPL & Perl Artistic)_ for its decoding needs.
-However, there is an alternative decoding package called [Unidecode](https://github.com/avian2/unidecode) _(GPL)_. It can be installed as `python-slugify[unidecode]` for those who prefer it.
+However, there is an alternative decoding package called [Unidecode](https://github.com/avian2/unidecode) _(GPL)_. It can be installed as `python-slugify[unidecode]` for those who prefer it. `Unidecode` is believed to be more advanced.
### `Official` Support Matrix
diff --git a/slugify/__version__.py b/slugify/__version__.py
index 184339a..71caf04 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__ = '7.0.0'
+__version__ = '8.0.0'