summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-11-04 16:46:52 -0800
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-11-04 16:46:52 -0800
commit45c69218a6baf7a23dce886c629215575587cb42 (patch)
tree5869326f9f1a32328198b64cb453ee1fb045fce7
parent8fa4935986f0d8a868d9c9de3fa443960c710634 (diff)
downloadpystache-45c69218a6baf7a23dce886c629215575587cb42.tar.gz
Prep for version 0.6.0.
-rw-r--r--HISTORY.md5
-rw-r--r--pystache/__init__.py2
-rw-r--r--setup.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 1cca5c8..5aac5f2 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -3,6 +3,11 @@ History
**Note:** Official support for Python 2.4 will end with Pystache version 0.6.0.
+0.6.0 (TBD)
+-----------
+
+- TODO
+
0.5.3 (2012-11-03)
------------------
diff --git a/pystache/__init__.py b/pystache/__init__.py
index 71708c3..ff3150f 100644
--- a/pystache/__init__.py
+++ b/pystache/__init__.py
@@ -10,4 +10,4 @@ from pystache.init import parse, render, Renderer, TemplateSpec
__all__ = ['parse', 'render', 'Renderer', 'TemplateSpec']
-__version__ = '0.5.3' # Also change in setup.py.
+__version__ = '0.6.0-alpha' # Also change in setup.py.
diff --git a/setup.py b/setup.py
index 4cb2e78..6e9aff4 100644
--- a/setup.py
+++ b/setup.py
@@ -112,7 +112,7 @@ else:
setup = dist.setup
-VERSION = '0.5.3' # Also change in pystache/__init__.py.
+VERSION = '0.6.0-alpha' # Also change in pystache/__init__.py.
FILE_ENCODING = 'utf-8'