From ee7336a4054e1d84bcc19933023ad45b09fb4182 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Tue, 10 Jan 2012 14:51:25 +0100 Subject: [PATCH] Fixed an installation issue with versionstools. Closes #181. --- compressor/__init__.py | 2 +- docs/changelog.txt | 5 +++++ docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/compressor/__init__.py b/compressor/__init__.py index 309a347..c500a0e 100644 --- a/compressor/__init__.py +++ b/compressor/__init__.py @@ -1,2 +1,2 @@ # following PEP 386, versiontools will pick it up -__version__ = (1, 1, 1, "final", 0) +__version__ = (1, 1, 2, "final", 0) diff --git a/docs/changelog.txt b/docs/changelog.txt index 3aecf4b..be09360 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -1,6 +1,11 @@ Changelog ========= +v1.1.2 +------ + +- Fixed an installation issue related to versiontools. + v1.1.1 ------ diff --git a/docs/conf.py b/docs/conf.py index f8b4c03..55b8f48 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'Django Compressor' -copyright = u'2011, Django Compressor authors' +copyright = u'2012, Django Compressor authors' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -50,7 +50,7 @@ copyright = u'2011, Django Compressor authors' # The short X.Y version. version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.1.1' +release = '1.1.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 1e62f31..21d1532 100644 --- a/setup.py +++ b/setup.py @@ -126,6 +126,6 @@ setup( 'django-appconf >= 0.4', ], setup_requires = [ - 'versiontools >= 1.6', + 'versiontools >= 1.8.2', ], )