From: David Lord Date: Fri, 4 Oct 2019 18:50:02 +0000 (-0700) Subject: release version 2.10.3 X-Git-Tag: 2.10.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6a71f9545ad0de5e30eee759a31a187475bcb0f;p=thirdparty%2Fjinja.git release version 2.10.3 --- diff --git a/CHANGES.rst b/CHANGES.rst index cb4d9d39..1df6bfed 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 2b8d0661..0eaf7214 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