aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-08-28 18:04:14 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-08-28 18:04:14 -0400
commitabf4d7611349aed5427189d8a8be2cbbe227a9d2 (patch)
tree077fc05ffdf2c3f33547af06e01f464c77bc8de8
parentcfd2b298aadb81fd5608d8c963ffb84d1f2f143d (diff)
downloadexternal_python_mako-abf4d7611349aed5427189d8a8be2cbbe227a9d2.tar.gz
external_python_mako-abf4d7611349aed5427189d8a8be2cbbe227a9d2.tar.bz2
external_python_mako-abf4d7611349aed5427189d8a8be2cbbe227a9d2.zip
- changelog for Martin Geisler's coding/utf-8 fixes
- version bump 0.9.1
-rw-r--r--CHANGES6
-rw-r--r--mako/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 6cb9a7c..2b32ec7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,9 @@
+0.9.1
+- [bug] Changed the format of the "source encoding" header output
+ by the code generator to use the format ``# -*- coding:%s -*-``
+ instead of ``# -*- encoding:%s -*-``; the former is more common
+ and compatible with emacs. Courtesy Martin Geisler.
+
0.9.0
- [bug] The Context.locals_() method becomes a private underscored
method, as this method has a specific internal use. The purpose
diff --git a/mako/__init__.py b/mako/__init__.py
index 4aa63d6..cb59f3a 100644
--- a/mako/__init__.py
+++ b/mako/__init__.py
@@ -5,5 +5,5 @@
# the MIT License: http://www.opensource.org/licenses/mit-license.php
-__version__ = '0.9.0'
+__version__ = '0.9.1'