We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24df8fc commit 41d4f62Copy full SHA for 41d4f62
CHANGES.rst
@@ -1,11 +1,9 @@
1
Version 2.2.3
2
-------------
3
4
-Unreleased
+Released 2023-02-15
5
6
-- Autoescaping is now enabled by default for ``.svg`` files. Inside
7
- templates this behavior can be changed with the ``autoescape`` tag.
8
- :issue:`4831`
+- Autoescape is enabled by default for ``.svg`` template files. :issue:`4831`
9
- Fix the type of ``template_folder`` to accept ``pathlib.Path``. :issue:`4892`
10
- Add ``--debug`` option to the ``flask run`` command. :issue:`4777`
11
src/flask/__init__.py
@@ -42,7 +42,7 @@
42
from .templating import stream_template as stream_template
43
from .templating import stream_template_string as stream_template_string
44
45
-__version__ = "2.2.3.dev"
+__version__ = "2.2.3"
46
47
48
def __getattr__(name):
0 commit comments