Commit 9b087b28 by Chris Jerdonek

Fixed history file rendering issues (due to reStructuredText syntax).

parent 648d0463
......@@ -5,23 +5,28 @@ Next Release (version TBD)
--------------------------
Features:
* Support for disabling HTML escape in Template and View classes. [cjerdonek]
* A custom template loader can now be passed to a View. [cjerdonek]
* Added a command-line interface. [vrde, cjerdonek]
API changes:
* Template.render() now accepts the context instead of Template.__init__(). [cjerdonek]
* ``Template.render()`` now accepts the context to render instead of
``Template()``. [cjerdonek]
Bug fixes:
* Context values no longer processed as template strings. [jakearchibald]
* Passing **kwargs to Template() modified the context. [cjerdonek]
* Passing **kwargs to Template() with no context raised an exception. [cjerdonek]
* Passing ``**kwargs`` to ``Template()`` modified the context. [cjerdonek]
* Passing ``**kwargs`` to ``Template()`` with no context raised an exception. [cjerdonek]
* Whitespace surrounding sections is no longer altered, in accordance with
the mustache spec. [heliodor]
* Fixed an issue that affected the rendering of zeroes when using certain
implementations of Python (i.e. PyPy). [alex]
Misc:
* Added some docstrings. [kennethreitz]
0.4.0 (2011-01-12)
......
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