Skip to content

Commit c4c4088

Browse files
committed
release 2.10.1
1 parent a2a6c93 commit c4c4088

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ Jinja Changelog
22
===============
33

44

5+
Version 2.10.1
6+
--------------
7+
8+
Released 2019-04-06
9+
10+
- ``SandboxedEnvironment`` securely handles ``str.format_map`` in
11+
order to prevent code execution through untrusted format strings.
12+
The sandbox already handled ``str.format``.
13+
14+
515
Version 2.10
616
------------
717

jinja2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
:license: BSD, see LICENSE for more details.
2828
"""
2929
__docformat__ = 'restructuredtext en'
30-
__version__ = '2.10'
30+
__version__ = '2.10.1'
3131

3232
# high level interface
3333
from jinja2.environment import Environment, Template

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
setup(
4242
name='Jinja2',
43-
version='2.10',
43+
version='2.10.1',
4444
url='http://jinja.pocoo.org/',
4545
license='BSD',
4646
author='Armin Ronacher',

0 commit comments

Comments
 (0)