From abf4d7611349aed5427189d8a8be2cbbe227a9d2 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 28 Aug 2013 18:04:14 -0400 Subject: - changelog for Martin Geisler's coding/utf-8 fixes - version bump 0.9.1 --- CHANGES | 6 ++++++ mako/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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' -- cgit v1.2.3