Commit 5ca05981 by Timothée Peignier

bump version

parent d5575271
...@@ -3,6 +3,12 @@ ...@@ -3,6 +3,12 @@
History History
======= =======
1.2.18
------
* **BACKWARD INCOMPATIBLE** : Replace yui-compressor by yuglify, check your configuration.
* Use finders in manifest. Thanks to Sjoerd Arendsen.
1.2.17 1.2.17
------ ------
...@@ -48,8 +54,8 @@ History ...@@ -48,8 +54,8 @@ History
1.2.10 1.2.10
------ ------
* Use ``/usr/bin/env`` by default to find compiler executable. Thanks to Michael Weibel. * Use ``/usr/bin/env`` by default to find compiler executable. Thanks to Michael Weibel.
* Allow to change embed settings : max size and directory. Thanks to Pierre Drescher. * Allow to change embed settings : max size and directory. Thanks to Pierre Drescher.
* Some documentation improvements. Thanks to Florent Messa. * Some documentation improvements. Thanks to Florent Messa.
1.2.9 1.2.9
...@@ -84,7 +90,7 @@ History ...@@ -84,7 +90,7 @@ History
----- -----
* Fix import error for cssmin and jsmin compressors. Thanks to Berker Peksag for the report. * Fix import error for cssmin and jsmin compressors. Thanks to Berker Peksag for the report.
* Fix error with default template function. Thanks to David Charbonnier for the patch and report. * Fix error with default template function. Thanks to David Charbonnier for the patch and report.
1.2.4 1.2.4
...@@ -132,7 +138,7 @@ History ...@@ -132,7 +138,7 @@ History
* Added a default js template language. * Added a default js template language.
* Dropped ``PIPELINE_AUTO`` settings in favor of simple ``PIPELINE``. * Dropped ``PIPELINE_AUTO`` settings in favor of simple ``PIPELINE``.
* Renamed ``absolute_asset_paths`` to ``absolute_paths`` for brevity. * Renamed ``absolute_asset_paths`` to ``absolute_paths`` for brevity.
* Made packages lazy to avoid doing unnecessary I/O. * Made packages lazy to avoid doing unnecessary I/O.
* Dropped ``external_urls`` support for now. * Dropped ``external_urls`` support for now.
* Add cssmin compressor. Thanks to Steven Cummings. * Add cssmin compressor. Thanks to Steven Cummings.
* Jsmin is no more bundle with pipeline. * Jsmin is no more bundle with pipeline.
...@@ -51,7 +51,7 @@ copyright = u'2011-2012, Timothée Peignier' ...@@ -51,7 +51,7 @@ copyright = u'2011-2012, Timothée Peignier'
# The short X.Y version. # The short X.Y version.
version = '1.2' version = '1.2'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '1.2.17' release = '1.2.18'
# 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.
......
...@@ -4,7 +4,7 @@ from setuptools import setup, find_packages ...@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
setup( setup(
name='django-pipeline', name='django-pipeline',
version='1.2.17', version='1.2.18',
description='Pipeline is an asset packaging library for Django.', description='Pipeline is an asset packaging library for Django.',
long_description=open('README.rst').read() + '\n\n' + long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(), open('HISTORY.rst').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