summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pystache/__init__.py2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pystache/__init__.py b/pystache/__init__.py
index 59dac98..71708c3 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-rc' # Also change in setup.py.
+__version__ = '0.5.3' # Also change in setup.py.
diff --git a/setup.py b/setup.py
index f5b417d..5eb5594 100644
--- a/setup.py
+++ b/setup.py
@@ -112,7 +112,7 @@ else:
setup = dist.setup
-VERSION = '0.5.3-rc' # Also change in pystache/__init__.py.
+VERSION = '0.5.3' # Also change in pystache/__init__.py.
FILE_ENCODING = 'utf-8'