summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2019-10-10 18:23:49 -0400
committerVal Neekman <val@neekware.com>2019-10-10 18:23:49 -0400
commitb9db1bc87e3b19c5c63ab7a00b19685b7996de5d (patch)
treee639e0fa57bcec1ebe36e81f3ceb40cb4a9f1563
parent33bf07efc82c00b811df02bca8c5862f95db3294 (diff)
downloadpython-slugify-b9db1bc87e3b19c5c63ab7a00b19685b7996de5d.tar.gz
fix missing encoding in file3.0.6
-rw-r--r--CHANGELOG.md3
-rw-r--r--slugify/__init__.py2
-rw-r--r--slugify/special.py3
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 """