summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml1
-rw-r--r--CHANGELOG.md17
-rw-r--r--requirements.txt2
-rwxr-xr-xsetup.py2
-rw-r--r--slugify/__init__.py4
-rw-r--r--test.py2
6 files changed, 9 insertions, 19 deletions
diff --git a/.travis.yml b/.travis.yml
index d4796fa..c1c4d27 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,4 +10,3 @@ before_script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then 2to3 --no-diffs --write --nobackups slugify; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then 2to3 --no-diffs --write --nobackups slugify; fi
script: python test.py
-
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0ed708c..681de4f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,12 @@
+## 0.0.7
+
+Enhancement:
+
+ - Handle encoding in setup file
+ - Update ReadME, ChangeLog, License files
+
+
## 0.0.6
Enhancement:
@@ -31,11 +39,4 @@ Features:
Enhancement:
- - Added more test
-
-
-## 0.0.1
-
-Features:
-
- - Initial Release
+ - A \ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
index 95840ab..d421466 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,3 +1 @@
Unidecode>=0.04.12
-
-
diff --git a/setup.py b/setup.py
index f632989..e9d0855 100755
--- a/setup.py
+++ b/setup.py
@@ -81,5 +81,3 @@ setup(
classifiers=classifiers,
use_2to3=True,
)
-
-
diff --git a/slugify/__init__.py b/slugify/__init__.py
index 0d438a3..eeba75a 100644
--- a/slugify/__init__.py
+++ b/slugify/__init__.py
@@ -104,7 +104,3 @@ def slugify(text, entities=True, decimal=True, hexadecimal=True, max_length=0, w
text = text.replace('-', separator)
return text
-
-
-
-
diff --git a/test.py b/test.py
index 0b726cb..7fb000e 100644
--- a/test.py
+++ b/test.py
@@ -65,5 +65,3 @@ class TestSequenceFunctions(unittest.TestCase):
if __name__ == '__main__':
unittest.main()
-
-