From a873f8e165ff257c616278581d49809bd0655406 Mon Sep 17 00:00:00 2001 From: Val Neekman Date: Thu, 9 Jan 2014 14:16:43 -0800 Subject: cleanups and upversion --- .travis.yml | 1 - CHANGELOG.md | 17 +++++++++-------- requirements.txt | 2 -- setup.py | 2 -- slugify/__init__.py | 4 ---- test.py | 2 -- 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() - - -- cgit v1.2.1