From 5ca1d725ea70d8588064e422fc98c4fa3cd63e37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Mon, 24 May 2021 19:04:42 +0200 Subject: [PATCH 1/2] Updated changelog --- docs/changelog.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 327d8cb5..53438e20 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,10 +6,29 @@ Unreleased - Stopped support for python<3.6 (`#416`_) - ``FileSize`` validator (`#307`_, `#365`_) +- Extra-requirement `email-validator` installs the + `email_validator` package (`#423`_) +- Fixed Flask 2.0 warnings (`#434`_) +- Various documentation fixes (`#315`_, `#321`_, `#335`_, + `#344`_, `#386`_, `#400`_, `#404`_, `#420`_, `#437`_) +- Various CI fixes (`#405`_, `#438`_) .. _#307: https://github.com/lepture/flask-wtf/pull/307 +.. _#315: https://github.com/lepture/flask-wtf/pull/315 +.. _#321: https://github.com/lepture/flask-wtf/pull/321 +.. _#335: https://github.com/lepture/flask-wtf/pull/335 +.. _#344: https://github.com/lepture/flask-wtf/pull/344 .. _#365: https://github.com/lepture/flask-wtf/pull/365 +.. _#386: https://github.com/lepture/flask-wtf/pull/386 +.. _#400: https://github.com/lepture/flask-wtf/pull/400 +.. _#404: https://github.com/lepture/flask-wtf/pull/404 +.. _#405: https://github.com/lepture/flask-wtf/pull/405 .. _#416: https://github.com/lepture/flask-wtf/pull/416 +.. _#420: https://github.com/lepture/flask-wtf/pull/420 +.. _#423: https://github.com/lepture/flask-wtf/pull/423 +.. _#434: https://github.com/lepture/flask-wtf/pull/434 +.. _#437: https://github.com/lepture/flask-wtf/pull/437 +.. _#438: https://github.com/lepture/flask-wtf/pull/438 Version 0.14.3 -------------- From 3cdc2b6047018f58662d0bb239edfd7d5ea0c4f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89loi=20Rivard?= Date: Mon, 24 May 2021 19:07:27 +0200 Subject: [PATCH 2/2] Release 0.15.0 --- docs/changelog.rst | 6 ++++-- flask_wtf/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 53438e20..a4a524eb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,8 +1,10 @@ Flask-WTF Changelog =================== -Unreleased ----------- +Version 0.15.0 +-------------- + +Released 2021-05-24 - Stopped support for python<3.6 (`#416`_) - ``FileSize`` validator (`#307`_, `#365`_) diff --git a/flask_wtf/__init__.py b/flask_wtf/__init__.py index effe9553..9f6f2b34 100644 --- a/flask_wtf/__init__.py +++ b/flask_wtf/__init__.py @@ -2,4 +2,4 @@ from .form import FlaskForm, Form from .recaptcha import * -__version__ = '0.14.3' +__version__ = '0.15.0' diff --git a/setup.py b/setup.py index c9ca71e1..a0d05a8d 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='Flask-WTF', - version='0.14.3', + version='0.15.0', url='https://github.com/lepture/flask-wtf', license='BSD', author='Dan Jacob',