diff options
| -rw-r--r-- | CHANGES | 6 | ||||
| -rw-r--r-- | mako/__init__.py | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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' |
