Commit 373a0f3c by Timothée Peignier

Bump version

parent cb39e0d1
...@@ -40,6 +40,7 @@ or just made Pipeline more awesome. ...@@ -40,6 +40,7 @@ or just made Pipeline more awesome.
* David Charbonnier <d.charbonnier@oxys.net> * David Charbonnier <d.charbonnier@oxys.net>
* David Cramer <dcramer@gmail.com> * David Cramer <dcramer@gmail.com>
* David Hughes <d@vidhughes.com> * David Hughes <d@vidhughes.com>
* David Trowbridge <trowbrds@gmail.com>
* Denis V Seleznyov <code@xy2.ru> * Denis V Seleznyov <code@xy2.ru>
* DJ Sharkey <dj@newscred.com> * DJ Sharkey <dj@newscred.com>
* Edwin Lunando <edwinlunando@gmail.com> * Edwin Lunando <edwinlunando@gmail.com>
......
...@@ -3,6 +3,12 @@ ...@@ -3,6 +3,12 @@
History History
======= =======
1.6.5
=====
* Fix Django < 1.8 compatibility. Thanks to David Trowbridge.
* Allow to disable collector during development. Thanks to Leonardo Orozco.
1.6.4 1.6.4
===== =====
......
...@@ -51,7 +51,7 @@ copyright = u'2011-2014, Timothée Peignier' ...@@ -51,7 +51,7 @@ copyright = u'2011-2014, Timothée Peignier'
# The short X.Y version. # The short X.Y version.
version = '1.6' version = '1.6'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '1.6.4' release = '1.6.5'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
...@@ -10,7 +10,7 @@ if (sys.version_info[0], sys.version_info[1]) < (3, 2): ...@@ -10,7 +10,7 @@ if (sys.version_info[0], sys.version_info[1]) < (3, 2):
setup( setup(
name='django-pipeline', name='django-pipeline',
version='1.6.4', version='1.6.5',
description='Pipeline is an asset packaging library for Django.', description='Pipeline is an asset packaging library for Django.',
long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' + long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' +
io.open('HISTORY.rst', encoding='utf-8').read(), io.open('HISTORY.rst', encoding='utf-8').read(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment