diff options
-rw-r--r-- | CHANGES.rst | 2 | ||||
-rw-r--r-- | src/jinja2/__init__.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 90c5bdf..0ce916d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,8 @@ Version 3.0.2 ------------- +Released 2021-10-04 + - Fix a loop scoping bug that caused assignments in nested loops to still be referenced outside of it. :issue:`1427` - Make ``compile_templates`` deterministic for filter and import diff --git a/src/jinja2/__init__.py b/src/jinja2/__init__.py index 75280ee..d9d23fc 100644 --- a/src/jinja2/__init__.py +++ b/src/jinja2/__init__.py @@ -42,4 +42,4 @@ from .utils import pass_environment as pass_environment from .utils import pass_eval_context as pass_eval_context from .utils import select_autoescape as select_autoescape -__version__ = "3.0.2.dev0" +__version__ = "3.0.2" |