summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Bicking <ianb@colorstudy.com>2010-09-14 11:19:18 -0500
committerIan Bicking <ianb@colorstudy.com>2010-09-14 11:19:18 -0500
commitb2b67795a009e9f825cbd855d766b78a00273f10 (patch)
tree9506c97a116810bbf480d63ba072fafe1bee09c1
parenta8e29d120415867147b3222d4058a330dae9ea31 (diff)
downloadtempita-b2b67795a009e9f825cbd855d766b78a00273f10.tar.gz
update versions for release0.5
-rw-r--r--docs/conf.py4
-rw-r--r--docs/index.txt4
-rw-r--r--setup.py12
3 files changed, 11 insertions, 9 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 9a77569..f9168d8 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -40,9 +40,9 @@ copyright = '2009, Ian Bicking'
# other places throughout the built documents.
#
# The short X.Y version.
-version = '0.4'
+version = '0.5'
# The full version, including alpha/beta/rc tags.
-release = '0.4'
+release = '0.5'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
diff --git a/docs/index.txt b/docs/index.txt
index 353ea6d..bfb5208 100644
--- a/docs/index.txt
+++ b/docs/index.txt
@@ -466,8 +466,8 @@ Still To Do
News
====
-hg tip
-------
+0.5
+---
* Python 3 compatible.
diff --git a/setup.py b/setup.py
index aa67fd7..528d5d6 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import sys, os
-version = '0.4.1'
+version = '0.5'
setup(name='Tempita',
version=version,
@@ -24,10 +24,12 @@ You can install from the `svn repository
``easy_install Tempita==dev``.
""",
classifiers=[
- 'Development Status :: 4 - Beta',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: MIT License',
- 'Topic :: Text Processing',
+ 'Development Status :: 4 - Beta',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: MIT License',
+ 'Topic :: Text Processing',
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 3',
],
keywords='templating template language html',
author='Ian Bicking',