summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@slide.com>2009-06-01 22:14:24 -0700
committerR. Tyler Ballance <tyler@slide.com>2009-06-01 22:14:24 -0700
commit8a0b07c4d8be640816a7bdc61a9b1e623d7c599c (patch)
treed4c3bfce1d7160baf09387e1516738878e814703
parent80bc4b8601cdf757742cce761961568d33c23ca3 (diff)
downloadpython-cheetah-8a0b07c4d8be640816a7bdc61a9b1e623d7c599c.tar.gz
Prep the v2.2.1 release for Tavis
Signed-off-by: R. Tyler Ballance <tyler@slide.com>
-rw-r--r--CHANGES6
-rw-r--r--src/Version.py4
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 339ea46..93cb332 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,10 @@
+2.2.1 (June 1st, 2009)
+ - 0000020: [Templates] Builtin support for using Cheetah with Django (rtyler)
+ - 0000021: [Compiler] @static and @classmethod don't properly define the _filter local (rtyler)
+ - 0000023: [Compiler] Update Template super calls to use super() (rtyler)
+ - Update all references to communitycheetah.org to point back at cheetahtemplate.org
+
2.2.0 (May 17th, 2009)
- Switch all internal representations of template code to unicode objects instead of str() objects
- Convert unicode compiled template to an utf8 char buffer when writing to a file (Jean-Baptiste Quenot <jbq@caraldi.com>)
diff --git a/src/Version.py b/src/Version.py
index 016e267..891a690 100644
--- a/src/Version.py
+++ b/src/Version.py
@@ -1,5 +1,5 @@
-Version = '2.2.0'
-VersionTuple = (2, 2, 0,'final', 0)
+Version = '2.2.1'
+VersionTuple = (2, 2, 1,'final', 0)
MinCompatibleVersion = '2.0rc6'
MinCompatibleVersionTuple = (2,0,0,'candidate',6)