Commit dce01cde by John Whitlock Committed by GitHub

Merge pull request #631 from jwhitlock/rel-1.6.13

Bump version to 1.6.13
parents 131a9bac 766e3f4f
...@@ -62,6 +62,7 @@ or just made Pipeline more awesome. ...@@ -62,6 +62,7 @@ or just made Pipeline more awesome.
* Jared Scott <jscott@convertro.com> * Jared Scott <jscott@convertro.com>
* Jaromir Fojtu <jaromir.fojtu@gmail.com> * Jaromir Fojtu <jaromir.fojtu@gmail.com>
* Jeff Held <jheld135@gmail.com> * Jeff Held <jheld135@gmail.com>
* John Whitlock <John-Whitlock@ieee.org> (@jwhitlock)
* Jon Dufresne <jon.dufresne@gmail.com> * Jon Dufresne <jon.dufresne@gmail.com>
* Josh Braegger <rckclmbr@gmail.com> * Josh Braegger <rckclmbr@gmail.com>
* Joshua Kehn <josh@kehn.us> * Joshua Kehn <josh@kehn.us>
...@@ -94,6 +95,7 @@ or just made Pipeline more awesome. ...@@ -94,6 +95,7 @@ or just made Pipeline more awesome.
* Sam Thomson <sammthomson@gmail.com> * Sam Thomson <sammthomson@gmail.com>
* Sander Smits <jhmsmits@gmail.com> * Sander Smits <jhmsmits@gmail.com>
* Sander Steffann <sander@steffann.nl> * Sander Steffann <sander@steffann.nl>
* Sassan Haradji (@sassanh)
* Sayed Raianul Kabir <raian@newscred.com> * Sayed Raianul Kabir <raian@newscred.com>
* Simon Lydell <simon.lydell@gmail.com> * Simon Lydell <simon.lydell@gmail.com>
* Sirex <sirexas@gmail.com> * Sirex <sirexas@gmail.com>
...@@ -104,10 +106,12 @@ or just made Pipeline more awesome. ...@@ -104,10 +106,12 @@ or just made Pipeline more awesome.
* Tadas Dailyda <tadas@dailyda.com> * Tadas Dailyda <tadas@dailyda.com>
* Teo Klestrup Röijezon <teo@nullable.se> * Teo Klestrup Röijezon <teo@nullable.se>
* Thomas Parslow <tom@almostobsolete.net> * Thomas Parslow <tom@almostobsolete.net>
* Tiago Espinha <tiago@espinha.nl>
* Timothée Peignier <timothee.peignier@tryphon.org> * Timothée Peignier <timothee.peignier@tryphon.org>
* Tom Yam <tomyam1@gmail.com> * Tom Yam <tomyam1@gmail.com>
* Tomek Paczkowski <tomek@hauru.eu> * Tomek Paczkowski <tomek@hauru.eu>
* Trey Smith <trey.smith@nasa.gov> * Trey Smith <trey.smith@nasa.gov>
* Vadym S. Khondar (@vskh)
* Venelin Stoykov <venelin@magicsolutions.bg> * Venelin Stoykov <venelin@magicsolutions.bg>
* Victor Shnayder <victor@mitx.mit.edu> * Victor Shnayder <victor@mitx.mit.edu>
* Wictor Olseryd <wictor@olseryd.se> * Wictor Olseryd <wictor@olseryd.se>
......
...@@ -3,11 +3,22 @@ ...@@ -3,11 +3,22 @@
History History
======= =======
1.6.13
======
* Fix forward-slashed paths on Windows. Thanks to @etiago
* Fix CSS URL detector to match quotes correctly. Thanks to @vskh
* Add a compiler_options dict to compile, to allow passing options to custom
compilers. Thanks to @sassanh
* Verify support for Django 1.11. Thanks to @jwhitlock
1.6.12 1.6.12
====== ======
* Supports Django 1.11
* Fix a bug with os.rename on windows. Thanks to @wismill * Fix a bug with os.rename on windows. Thanks to @wismill
* Fix to view compile error if happens. Thanks to @brawaga * Fix to view compile error if happens. Thanks to @brawaga
* Add support for Pipeline CSS/JS packages in forms and widgets. Thanks to @chipx86
1.6.11 1.6.11
====== ======
......
...@@ -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.12' release = '1.6.13'
# 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.12', version='1.6.13',
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