diff --git a/CHANGES.rst b/CHANGES.rst index 90c5bdf3a..0ce916df4 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 75280ee17..d9d23fce8 100644 --- a/src/jinja2/__init__.py +++ b/src/jinja2/__init__.py @@ -42,4 +42,4 @@ 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"