From 3d65d88a6e37fb5588d8c05fd6bf90e34b0bba1e Mon Sep 17 00:00:00 2001 From: Val Neekman Date: Fri, 29 May 2015 16:05:53 -0400 Subject: [PATCH] up version --- README.md | 8 ++++++++ requirements.txt | 2 +- uuslug/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9df1fee..c8b6943 100644 --- a/README.md +++ b/README.md @@ -221,6 +221,14 @@ License Released under a ([BSD](LICENSE.md)) license. +Version +==================== +X.Y.Z Version + + `MAJOR` version -- when you make incompatible API changes, + `MINOR` version -- when you add functionality in a backwards-compatible manner, and + `PATCH` version -- when you make backwards-compatible bug fixes. + [build-status-image-travis]: https://secure.travis-ci.org/un33k/django-uuslug.png?branch=master [travis]: http://travis-ci.org/un33k/django-uuslug?branch=master diff --git a/requirements.txt b/requirements.txt index 86cd1d8..b6debb4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -python-slugify>=0.1.0 +Django>=1.4.20 diff --git a/uuslug/__init__.py b/uuslug/__init__.py index 96eadac..89cbd80 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.0.5' +__version__ = '1.1.5' default_app_config = 'uuslug.apps.AppConfig'