* Bugfix: Fix smartypants to 1.7.x to avoid the breaking changes in 1.8. (Issue #229) * Bugfix: Upgrade Jinja to 2.7.1 - this fixes mitsuhiko/jinja2#243.main
@@ -1,3 +1,11 @@ | |||||
Version 0.8.8-a1 (2013-08-19) | |||||
=========================================================== | |||||
* Bugfix: Fix smartypants to 1.7.x to avoid the breaking | |||||
changes in 1.8. (Issue #229) | |||||
* Bugfix: Upgrade Jinja to 2.7.1 - this fixes | |||||
mitsuhiko/jinja2#243. | |||||
Version 0.8.7 (2013-05-30) | Version 0.8.7 (2013-05-30) | ||||
============================================================ | ============================================================ | ||||
@@ -1,4 +1,4 @@ | |||||
Version 0.8.7 | |||||
Version 0.8.8-a1 | |||||
A brand new **hyde** | A brand new **hyde** | ||||
==================== | ==================== | ||||
@@ -2,4 +2,4 @@ | |||||
""" | """ | ||||
Handles hyde version. | Handles hyde version. | ||||
""" | """ | ||||
__version__ = '0.8.7' | |||||
__version__ = '0.8.8-a1' |
@@ -1,8 +1,9 @@ | |||||
fswrap==0.1.1 | |||||
fswrap==0.1.2 | |||||
commando==0.3.4 | commando==0.3.4 | ||||
PyYAML==3.10 | PyYAML==3.10 | ||||
Markdown==2.3.1 | Markdown==2.3.1 | ||||
MarkupSafe==0.18 | MarkupSafe==0.18 | ||||
Pygments==1.6 | Pygments==1.6 | ||||
typogrify==2.0.0 | typogrify==2.0.0 | ||||
Jinja2==2.7 | |||||
smartypants<1.8 | |||||
Jinja2==2.7.1 |
@@ -116,14 +116,15 @@ setup(name=PROJECT, | |||||
packages=find_packages(), | packages=find_packages(), | ||||
requires=['python (>= 2.7)'], | requires=['python (>= 2.7)'], | ||||
install_requires=( | install_requires=( | ||||
'fswrap==0.1.1', | |||||
'fswrap==0.1.2', | |||||
'commando==0.3.4', | 'commando==0.3.4', | ||||
'PyYAML==3.10', | 'PyYAML==3.10', | ||||
'Markdown==2.3.1', | 'Markdown==2.3.1', | ||||
'MarkupSafe==0.18', | 'MarkupSafe==0.18', | ||||
'Pygments==1.6', | 'Pygments==1.6', | ||||
'typogrify==2.0.0', | 'typogrify==2.0.0', | ||||
'Jinja2==2.7' | |||||
'smartypants<1.8', | |||||
'Jinja2==2.7.1' | |||||
), | ), | ||||
tests_require=( | tests_require=( | ||||
'nose', 'mock' | 'nose', 'mock' | ||||