From 6e89a7d7786b6f72d6f07e46382305809d6e1da3 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Tue, 12 Sep 2023 12:21:22 +0100 Subject: [PATCH] Release 4.0.5 --- CHANGES.md | 6 ++++++ setup.cfg | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 21481a0..2b44b8b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Flask-Migrate Change Log +**Release 4.0.5** - 2023-09-12 + +- Compatiblity fixes for Flask-SQLAlchemy >= 3.1 [#526](https://github.com/miguelgrinberg/flask-migrate/issues/526) ([commit](https://github.com/miguelgrinberg/flask-migrate/commit/f562178bbe1912912f3cb6877cbae8b0899c74da)) (thanks **David Lord**!) +- Allow `process_revision_directives` option to be configurable [#523](https://github.com/miguelgrinberg/flask-migrate/issues/523) ([commit](https://github.com/miguelgrinberg/flask-migrate/commit/821e37fcc4a5e339f197153cdbb4dd2316cbd44b)) (thanks **llc**!) +- Stop testing Python 3.7, as Flask-SQLAlchemy 3.1 stopped supporting it ([commit](https://github.com/miguelgrinberg/flask-migrate/commit/8d175193f00bf4e5578f0142d011093d8cd53d57)) + **Release 4.0.4** - 2023-02-02 - Correctly obtain database URL with SQLAlchemy 2.0 [#505](https://github.com/miguelgrinberg/flask-migrate/issues/505) ([commit](https://github.com/miguelgrinberg/flask-migrate/commit/c8cd02c5d3d43bbab462b863db5417b5d69228bb)) diff --git a/setup.cfg b/setup.cfg index 0c09321..662179b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = Flask-Migrate -version = 4.0.5.dev0 +version = 4.0.5 author = Miguel Grinberg author_email = miguel.grinberg@gmail.com license = MIT