up version

This commit is contained in:
Val Neekman 2015-07-08 10:06:10 -04:00
parent 224a9ef3c4
commit 29f3d346d7
4 changed files with 10 additions and 4 deletions

View file

@ -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

View file

@ -1,3 +1,9 @@
## 1.1.6
Maintenance:
- Up version python-slugify, fixed broken status links on github
## 1.1.5
Enhancement:

View file

@ -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',

View file

@ -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'