From 0747f7d5112d473a5fc1f190987fecb6d2d43425 Mon Sep 17 00:00:00 2001 From: Daniel Vaz Gaspar Date: Wed, 10 Nov 2021 12:01:02 +0000 Subject: [PATCH] release: 3.4.0 (#1739) * release: 3.4.0 * pin python to 3.9.7 --- .github/workflows/ci.yml | 2 +- CHANGELOG.rst | 8 ++++++++ flask_appbuilder/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41b3bce3f3..da93d34c5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-18.04 strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9.7] env: SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://pguser:pguserpassword@127.0.0.1:15432/app diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8e1c656c8e..1d8a577453 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Flask-AppBuilder ChangeLog ========================== +Improvements and Bug fixes on 3.4.0 +----------------------------------- + +- chore: pin down WTForms (#1735) [Daniel Vaz Gaspar] +- fix: ModuleNotFoundError from wtforms 3.0.0 (#1733) [Ke Zhu] +- fix: add .env for docker-compose (#1728) [Daniel Vaz Gaspar] +- fix: OAuth login flow (#1707) [Daniel Vaz Gaspar] + Improvements and Bug fixes on 3.3.4 ----------------------------------- diff --git a/flask_appbuilder/__init__.py b/flask_appbuilder/__init__.py index 7b2b83c228..57933be063 100644 --- a/flask_appbuilder/__init__.py +++ b/flask_appbuilder/__init__.py @@ -1,5 +1,5 @@ __author__ = "Daniel Vaz Gaspar" -__version__ = "3.3.4" +__version__ = "3.4.0" from .actions import action # noqa: F401 from .api import ModelRestApi # noqa: F401