diff --git a/.travis.yml b/.travis.yml index 8a0c79e..ce352f3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ python: - pypy env: - - DJANGO="django==1.8" + - DJANGO="django==1.8.2" - DJANGO="django==1.7.7" - DJANGO="django==1.4.20" @@ -36,7 +36,7 @@ matrix: - python: "2.6" env: DJANGO="django==1.7.7" - python: "2.6" - env: DJANGO="django==1.8" + env: DJANGO="django==1.8.2" script: - coverage run --source=uuslug manage.py test diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fec10a..8666a6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.1.6 + +Maintenance: + + - Up version python-slugify, fixed broken status links on github + ## 1.1.5 Enhancement: diff --git a/setup.py b/setup.py index dbdbfa3..b969f95 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ url = 'https://github.com/un33k/django-uuslug' author = 'Val Neekman' author_email = 'info@neekware.com' license = 'BSD' -install_requires = ['python-slugify>=1.1.2'] +install_requires = ['python-slugify>=1.1.3'] classifiers = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', diff --git a/uuslug/__init__.py b/uuslug/__init__.py index 89cbd80..c29daec 100644 --- a/uuslug/__init__.py +++ b/uuslug/__init__.py @@ -2,6 +2,6 @@ from .uuslug import * __author__ = 'Val Neekman @ Neekware Inc. [@vneekman]' __description__ = 'A Python slugify application that also handles Unicode' -__version__ = '1.1.5' +__version__ = '1.1.6' default_app_config = 'uuslug.apps.AppConfig'