diff options
| -rw-r--r-- | README.md | 12 | ||||
| -rw-r--r-- | requirements.txt | 3 | ||||
| -rwxr-xr-x | setup.py | 2 | ||||
| -rw-r--r-- | slugify/__init__.py | 2 |
4 files changed, 12 insertions, 7 deletions
@@ -3,7 +3,7 @@ Python Slugify **A Python slugify application that handles unicode** -**Author:** Val Neekman [ info@neekware.com, @vneekman ] +**Author:** Val Neekman [ info [@] neekware.com, [@vneekman](https://twitter.com/vneekman) ] Overview ======== @@ -93,13 +93,17 @@ To run the tests against the current environment: Changelog ========= +0.0.5 +----- +* Added Python 3.0 Support (work by: arthurdarcet@github) + 0.0.4 ----- -* Added option to add a non-dash separator (feature request by: danilodimoia) +* Added option to add a non-dash separator (feature request by: danilodimoia@github) 0.0.3 ----- -* Added the ability to truncate slugs + tests (feature request by: Juan Riaza of Spain) +* Added the ability to truncate slugs + tests (feature request by:juanriaza@github) 0.0.2 ----- @@ -114,7 +118,7 @@ Changelog License ======= -Copyright © Val Neekman (Neekware Inc.) +Copyright © Val Neekman ([Neekware Inc.](http://neekware.com)) All rights reserved. diff --git a/requirements.txt b/requirements.txt index 000ccb7..95840ab 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ -Unidecode>=0.04.9 +Unidecode>=0.04.12 + @@ -14,7 +14,7 @@ url = 'https://github.com/un33k/python-slugify' author = 'Val Neekman' author_email = 'info@neekware.com' license = 'BSD' -install_requires = ['Unidecode>=0.04.9'] +install_requires = ['Unidecode>=0.04.12'] classifiers = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', diff --git a/slugify/__init__.py b/slugify/__init__.py index fffab01..3f4493a 100644 --- a/slugify/__init__.py +++ b/slugify/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.0.4' +__version__ = '0.0.5' __all__ = ['slugify'] |
