summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'