summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2013-05-21 07:23:01 -0400
committerVal Neekman <val@neekware.com>2013-05-21 07:23:01 -0400
commit073b9c72320edfd65ba2c8732ac70d41897b0d5f (patch)
tree314cacf31e2bd0cd9dabe9696e8ee1b6b3f0c781
parent1fd811dae346c5e57c7d19680199bd1509863feb (diff)
downloadpython-slugify-073b9c72320edfd65ba2c8732ac70d41897b0d5f.tar.gz
support for python 3
-rw-r--r--README.md12
-rw-r--r--requirements.txt3
-rwxr-xr-xsetup.py2
-rw-r--r--slugify/__init__.py2
4 files changed, 12 insertions, 7 deletions
diff --git a/README.md b/README.md
index 0004eb8..7c55a07 100644
--- a/README.md
+++ b/README.md
@@ -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
+
diff --git a/setup.py b/setup.py
index 4499a0d..f9d5c5a 100755
--- a/setup.py
+++ b/setup.py
@@ -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']