summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2015-07-08 09:40:22 -0400
committerVal Neekman <val@neekware.com>2015-07-08 09:40:22 -0400
commit632ea7d6d54302443d8011727ed5ef7174d50640 (patch)
treefdcc81fd1dd812dbd307566b11c3942917025691
parent2a55aed04fed93b5fc99b8a305ef713fc25faac8 (diff)
downloadpython-slugify-632ea7d6d54302443d8011727ed5ef7174d50640.tar.gz
up version1.1.3
-rw-r--r--CHANGELOG.md7
-rw-r--r--README.md8
-rw-r--r--slugify/__init__.py2
3 files changed, 14 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 336a19d..d085ae8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## 1.1.3
+
+Bugfix:
+
+ - Handle unichar in python 3.x
+
+
## 1.1.2
Enhancement:
diff --git a/README.md b/README.md
index 0e06252..fb4ca24 100644
--- a/README.md
+++ b/README.md
@@ -142,6 +142,10 @@ How to use
txt = 'the quick brown fox jumps over the lazy dog in a hurry'
r = slugify(txt, stopwords=['the', 'in', 'a', 'hurry'])
self.assertEqual(r, 'quick-brown-fox-jumps-over-lazy-dog')
+
+ txt = 'foo &amp; bar'
+ r = slugify(txt)
+ self.assertEqual(r, 'foo-bar')
```
Running the tests
@@ -169,8 +173,8 @@ X.Y.Z Version
[status-image]: https://secure.travis-ci.org/un33k/python-slugify.png?branch=master
[status-link]: http://travis-ci.org/un33k/python-slugify?branch=master
-[version-image]: https://img.shields.io/pypi/v/djangorestframework.svg
-[version-link]: https://pypi.python.org/pypi/djangorestframework
+[version-image]: https://img.shields.io/pypi/v/python-slugify.svg
+[version-link]: https://pypi.python.org/pypi/python-slugify
[coverage-image]: https://coveralls.io/repos/un33k/python-slugify/badge.svg
[coverage-link]: https://coveralls.io/r/un33k/python-slugify
diff --git a/slugify/__init__.py b/slugify/__init__.py
index e180ad6..7aeaccd 100644
--- a/slugify/__init__.py
+++ b/slugify/__init__.py
@@ -3,4 +3,4 @@ from .slugify import *
__author__ = 'Val Neekman @ Neekware Inc. [@vneekman]'
__description__ = 'A Python slugify application that also handles Unicode'
-__version__ = '1.1.2'
+__version__ = '1.1.3'