diff --git a/docs/changelog.rst b/docs/changelog.rst index 34d3ef7..072d8e1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,17 @@ Changelog ========= +v2.0.2 +------ + +- Fixed the pickling of ImageSpecFieldFile. +- Signals are now connected without specifying the class and non-IK models + are filitered out in the receivers. This is necessary beacuse of a bug + with how Django handles abstract models. +- Fixed a `ZeroDivisionError` in the Reflection processor. +- `cStringIO` is now used if it's available. +- Reflections on images now use RGBA instead of RGB. + v2.0.1 ------ diff --git a/docs/conf.py b/docs/conf.py index 9305a5c..e0913b9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ copyright = u'2011, Justin Driscoll, Bryan Veloso, Greg Newman, Chris Drackett & # built documents. # # The short X.Y version. -version = '2.0.1' +version = '2.0.2' # The full version, including alpha/beta/rc tags. -release = '2.0.1' +release = '2.0.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/imagekit/__init__.py b/imagekit/__init__.py index 55a5d04..9dd4ffe 100644 --- a/imagekit/__init__.py +++ b/imagekit/__init__.py @@ -1,6 +1,6 @@ __title__ = 'django-imagekit' __author__ = 'Justin Driscoll, Bryan Veloso, Greg Newman, Chris Drackett, Matthew Tretter, Eric Eldredge' -__version__ = (2, 0, 1, 'final', 0) +__version__ = (2, 0, 2, 'final', 0) __license__ = 'BSD'