Skip to content

Commit

Permalink
Upgrade dependencies (fswrap, jinja2, smartypants).
Browse files Browse the repository at this point in the history
*   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
    pallets/jinja#243.
  • Loading branch information
navilan committed Aug 20, 2013
1 parent 696adac commit a35daf4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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)
============================================================

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 0.8.7
Version 0.8.8-a1

A brand new **hyde**
====================
Expand Down
2 changes: 1 addition & 1 deletion hyde/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"""
Handles hyde version.
"""
__version__ = '0.8.7'
__version__ = '0.8.8-a1'
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
fswrap==0.1.1
fswrap==0.1.2
commando==0.3.4
PyYAML==3.10
Markdown==2.3.1
MarkupSafe==0.18
Pygments==1.6
typogrify==2.0.0
Jinja2==2.7
smartypants<1.8
Jinja2==2.7.1
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,15 @@ def find_package_data(
packages=find_packages(),
requires=['python (>= 2.7)'],
install_requires=(
'fswrap==0.1.1',
'fswrap==0.1.2',
'commando==0.3.4',
'PyYAML==3.10',
'Markdown==2.3.1',
'MarkupSafe==0.18',
'Pygments==1.6',
'typogrify==2.0.0',
'Jinja2==2.7'
'smartypants<1.8',
'Jinja2==2.7.1'
),
tests_require=(
'nose', 'mock'
Expand Down

0 comments on commit a35daf4

Please sign in to comment.