summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY.rst4
-rw-r--r--pystache/__init__.py2
-rw-r--r--setup.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 7f9c3a2..9dab5cb 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,8 +1,8 @@
History
=======
-0.6.0 (TBD)
------------
+0.5.2 (2012-05-03)
+------------------
* Added support for dot notation and version 1.1.2 of the spec (issue #99). [rbp]
* Missing partials now render as empty string per latest version of spec (issue #115).
diff --git a/pystache/__init__.py b/pystache/__init__.py
index 5f5035d..d1fbdb1 100644
--- a/pystache/__init__.py
+++ b/pystache/__init__.py
@@ -10,4 +10,4 @@ from pystache.init import render, Renderer, TemplateSpec
__all__ = ['render', 'Renderer', 'TemplateSpec']
-__version__ = '0.5.1' # Also change in setup.py.
+__version__ = '0.5.2-rc' # Also change in setup.py.
diff --git a/setup.py b/setup.py
index 356b51f..fd4b3a1 100644
--- a/setup.py
+++ b/setup.py
@@ -72,7 +72,7 @@ else:
# print("Using: version %s of %s" % (repr(dist.__version__), repr(dist)))
-VERSION = '0.5.1' # Also change in pystache/__init__.py.
+VERSION = '0.5.2-rc' # Also change in pystache/__init__.py.
HISTORY_PATH = 'HISTORY.rst'
LICENSE_PATH = 'LICENSE'