summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-04-02 05:27:25 -0700
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-04-02 05:27:25 -0700
commitb5ec7e930b83d49defe51c380f278049c7ca673c (patch)
tree1ea7a028d5901090c742e26600346a9c37e26113
parentbf21ce3c99bf5184c299594f465f64061b636126 (diff)
downloadpystache-b5ec7e930b83d49defe51c380f278049c7ca673c.tar.gz
Removed some now-redundant information from HISTORY file.
-rw-r--r--HISTORY.rst5
1 files changed, 1 insertions, 4 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index f5ba6a1..e949983 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -13,7 +13,7 @@ Key Changes:
* Pystache now passes all tests in version 1.0.3 of the `Mustache spec`_. [pvande]
* Removed View class: it is no longer necessary to subclass from View or
- from any class to create a view.
+ from any other class to create a view.
* Replaced Template with Renderer class: template rendering behavior can
be modified via the Renderer constructor or by setting attributes on a Renderer instance.
* Added TemplateSpec class: template rendering can be specified on a per-view
@@ -29,7 +29,6 @@ Features:
* Views and Renderers accept a custom template loader. Also, this loader
can be a dictionary of partials. [cjerdonek]
* Added a command-line interface. [vrde, cjerdonek]
-* Markupsafe can now be disabled after import. [cjerdonek]
* Custom escape function can now be passed to Template constructor. [cjerdonek]
* Template class can now handle non-ascii characters in non-unicode strings.
Added default_encoding and decode_errors to Template constructor arguments.
@@ -38,8 +37,6 @@ Features:
API changes:
-* Template class replaced by a Renderer class. [cjerdonek]
-* ``Loader.load_template()`` changed to ``Loader.get()``. [cjerdonek]
* Removed output_encoding options. [cjerdonek]
* Removed automatic use of markupsafe, if available. [cjerdonek]