Commit c37c9f73 by David Trowbridge

Bump version to 1.6.7

parent f62145aa
......@@ -76,6 +76,7 @@ or just made Pipeline more awesome.
* Mike Gilbert <floppym@gentoo.org>
* Miroslav Shubernetskiy <miroslav@miki725.com>
* Natal Ngetal <natal.ngetal@novapost.fr>
* Nathan Cox <akujin@akujin.com>
* Nathan Shafer <nate@torzo.com>
* Patrick Altman <paltman@gmail.com>
* Peter Baumgartner <pete@lincolnloop.com>
......
......@@ -3,6 +3,20 @@
History
=======
1.6.7
=====
* Add a view for collecting static files before serving them. This behaves like
django's built-in ``static`` view and allows running the collector for
images, fonts, and other static files that do not need to be compiled. Thanks
to Christian Hammond.
* Update documentation for the ES6Compiler to clarify filename requirements.
Thanks to Nathan Cox.
* Add error output for compiler errors within the browser. This provides for a
much better experience when compiling files from the devserver. Thanks to
Christian Hammond.
* Make unit tests run against Django 1.6 and 1.7. Thanks to Sławek Ehlert.
1.6.6
=====
......
......@@ -51,7 +51,7 @@ copyright = u'2011-2014, Timothée Peignier'
# The short X.Y version.
version = '1.6'
# The full version, including alpha/beta/rc tags.
release = '1.6.6'
release = '1.6.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
......
......@@ -10,7 +10,7 @@ if (sys.version_info[0], sys.version_info[1]) < (3, 2):
setup(
name='django-pipeline',
version='1.6.6',
version='1.6.7',
description='Pipeline is an asset packaging library for Django.',
long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' +
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