From 7a59b7d77aae0e0128fba007ace501f81b138b70 Mon Sep 17 00:00:00 2001 From: Stephan Jaekel Date: Tue, 20 Oct 2015 12:19:37 +0200 Subject: [PATCH] Released 0.2.0. --- CHANGELOG.rst | 8 ++++++++ docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 08d9741..b64715a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +0.2.0 - 2015-10-20 +------------------ + +* Added domain support to allow serving of thumbnails from a different domain +* Fixed handling of staticfiles when using CachedStaticFilesStorage +* Bugfix for path quoting +* Added Django 1.8 support + 0.1.0 - 2015-03-24 ------------------ diff --git a/docs/conf.py b/docs/conf.py index 8315e86..2437ee1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,8 +17,8 @@ master_doc = 'index' project = 'django-ultimatethumb' copyright = '2015, Moccu GmbH & Co. KG' -version = '0.1.0' -release = '0.1.0' +version = '0.2.0' +release = '0.2.0' exclude_patterns = ['_build'] pygments_style = 'sphinx' html_theme = 'default' diff --git a/setup.py b/setup.py index 903e734..4bea08f 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ def read(*parts): name='django-ultimatethumb', description='Generate thumbnails of anything.', long_description=read('README.rst'), - version='0.1.0', + version='0.2.0', license='BSD', author='Moccu GmbH & Co. KG', author_email='info@moccu.com',