diff options
| -rw-r--r-- | CHANGELOG.md | 3 | ||||
| -rw-r--r-- | slugify/__init__.py | 2 | ||||
| -rw-r--r-- | slugify/special.py | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e1a514..7210471 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.0.6 + - Fixed encoding in special.py + ## 3.0.5 - Add test for pre-translation (e.g German Umlaut) - Add special char supports (optional Use) diff --git a/slugify/__init__.py b/slugify/__init__.py index 0c86a4c..b1dfecb 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__ = '3.0.5' +__version__ = '3.0.6' diff --git a/slugify/special.py b/slugify/special.py index 767541a..d3478d5 100644 --- a/slugify/special.py +++ b/slugify/special.py @@ -1,3 +1,6 @@ +# -*- coding: utf-8 -*- + + def add_uppercase_char(char_list): """ Given a replacement char list, this adds uppercase chars to the list """ |
