diff options
author | Val Neekman <val@neekware.com> | 2014-01-09 14:16:43 -0800 |
---|---|---|
committer | Val Neekman <val@neekware.com> | 2014-01-09 14:16:43 -0800 |
commit | a873f8e165ff257c616278581d49809bd0655406 (patch) | |
tree | b8613f58c1e0d405e959c4d6775b5e457fc87591 | |
parent | eb282c6c8c0c3aaece9f8990537231e3f0a456f9 (diff) | |
download | python-slugify-a873f8e165ff257c616278581d49809bd0655406.tar.gz |
cleanups and upversion
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | CHANGELOG.md | 17 | ||||
-rw-r--r-- | requirements.txt | 2 | ||||
-rwxr-xr-x | setup.py | 2 | ||||
-rw-r--r-- | slugify/__init__.py | 4 | ||||
-rw-r--r-- | 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 - - @@ -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 - - - - @@ -65,5 +65,3 @@ class TestSequenceFunctions(unittest.TestCase): if __name__ == '__main__': unittest.main() - - |