diff --git a/CHANGES.rst b/CHANGES.rst index 0e4bebfa..12d89870 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,14 @@ .. currentmodule:: flask +Version 2.1.3 +------------- + +Unreleased + +- Inline some optional imports that are only used for certain CLI + commands. :pr:`4606` + + Version 2.1.2 ------------- diff --git a/src/flask/__init__.py b/src/flask/__init__.py index f684f57a..380de0f4 100644 --- a/src/flask/__init__.py +++ b/src/flask/__init__.py @@ -42,4 +42,4 @@ from .signals import template_rendered as template_rendered from .templating import render_template as render_template from .templating import render_template_string as render_template_string -__version__ = "2.1.2" +__version__ = "2.1.3.dev0"