From 41d4f62909bb426c84e9d057151f7d734695320a Mon Sep 17 00:00:00 2001 From: David Lord Date: Wed, 15 Feb 2023 14:20:33 -0800 Subject: [PATCH] release version 2.2.3 --- CHANGES.rst | 6 ++---- src/flask/__init__.py | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 79e66e956d..cd1a04c489 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,11 +1,9 @@ Version 2.2.3 ------------- -Unreleased +Released 2023-02-15 -- Autoescaping is now enabled by default for ``.svg`` files. Inside - templates this behavior can be changed with the ``autoescape`` tag. - :issue:`4831` +- Autoescape is enabled by default for ``.svg`` template files. :issue:`4831` - Fix the type of ``template_folder`` to accept ``pathlib.Path``. :issue:`4892` - Add ``--debug`` option to the ``flask run`` command. :issue:`4777` diff --git a/src/flask/__init__.py b/src/flask/__init__.py index 4bd5231146..463f55f255 100644 --- a/src/flask/__init__.py +++ b/src/flask/__init__.py @@ -42,7 +42,7 @@ from .templating import stream_template as stream_template from .templating import stream_template_string as stream_template_string -__version__ = "2.2.3.dev" +__version__ = "2.2.3" def __getattr__(name):