diff options
| -rw-r--r-- | doc/build/changelog.rst | 11 | ||||
| -rw-r--r-- | mako/__init__.py | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/doc/build/changelog.rst b/doc/build/changelog.rst index c932495..2796419 100644 --- a/doc/build/changelog.rst +++ b/doc/build/changelog.rst @@ -6,6 +6,17 @@ Changelog === .. changelog:: + :version: 1.0.3 + + .. change:: + :tags: bug, babel + :pullreq: bitbucket:21 + + Fixed an issue where the Babel plugin would not handle a translation + symbol that contained non-ascii characters. Pull request courtesy + Roman Imankulov. + +.. changelog:: :version: 1.0.2 :released: Wed Aug 26 2015 diff --git a/mako/__init__.py b/mako/__init__.py index 59d4060..74526ec 100644 --- a/mako/__init__.py +++ b/mako/__init__.py @@ -5,4 +5,4 @@ # the MIT License: http://www.opensource.org/licenses/mit-license.php -__version__ = '1.0.2' +__version__ = '1.0.3' |
