release 2.10.1

This commit is contained in:
David Lord 2019-04-06 11:02:53 -07:00
parent a2a6c930bc
commit c4c4088945
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
3 changed files with 12 additions and 2 deletions

View File

@ -2,6 +2,16 @@ Jinja Changelog
===============
Version 2.10.1
--------------
Released 2019-04-06
- ``SandboxedEnvironment`` securely handles ``str.format_map`` in
order to prevent code execution through untrusted format strings.
The sandbox already handled ``str.format``.
Version 2.10
------------

View File

@ -27,7 +27,7 @@
:license: BSD, see LICENSE for more details.
"""
__docformat__ = 'restructuredtext en'
__version__ = '2.10'
__version__ = '2.10.1'
# high level interface
from jinja2.environment import Environment, Template

View File

@ -40,7 +40,7 @@ from setuptools import setup
setup(
name='Jinja2',
version='2.10',
version='2.10.1',
url='http://jinja.pocoo.org/',
license='BSD',
author='Armin Ronacher',