diff --git a/CHANGES.rst b/CHANGES.rst index cb4d9d394..1df6bfeda 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,14 @@ .. currentmodule:: jinja2 +Version 2.10.3 +-------------- + +Released 2019-10-24 + +- Fix a typo in Babel entry point in ``setup.py`` that was preventing + installation. + + Version 2.10.2 -------------- diff --git a/jinja2/__init__.py b/jinja2/__init__.py index 2b8d0661e..0eaf72149 100644 --- a/jinja2/__init__.py +++ b/jinja2/__init__.py @@ -27,7 +27,7 @@ :license: BSD, see LICENSE for more details. """ __docformat__ = 'restructuredtext en' -__version__ = "2.10.2" +__version__ = "2.10.3" # high level interface from jinja2.environment import Environment, Template