diff --git a/CHANGES.rst b/CHANGES.rst index ae07651a..a85313eb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,7 +3,7 @@ Version 1.1.2 ------------- -Unreleased +Released 2020-04-03 - Work around an issue when running the ``flask`` command with an external debugger on Windows. :issue:`3297` diff --git a/MANIFEST.in b/MANIFEST.in index 555022cb..b2c37b97 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,3 +6,4 @@ graft docs prune docs/_build graft examples graft tests +global-exclude *.pyc diff --git a/src/flask/__init__.py b/src/flask/__init__.py index d0e105d5..1a487e18 100644 --- a/src/flask/__init__.py +++ b/src/flask/__init__.py @@ -57,4 +57,4 @@ from .signals import template_rendered from .templating import render_template from .templating import render_template_string -__version__ = "1.1.2.dev" +__version__ = "1.1.2"