From dd098cc0057d6fc260e034b897a133cb3ede5902 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Fri, 10 Jan 2025 18:50:24 +0000 Subject: [PATCH] Release 4.1.0 --- CHANGES.md | 5 +++++ pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index ba4720f..3307cbd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Flask-Migrate Change Log +**Release 4.1.0** - 2025-01-10 + +- Accept arguments such as `--directory` in environment variables [#553](https://github.com/miguelgrinberg/flask-migrate/issues/553) ([commit](https://github.com/miguelgrinberg/flask-migrate/commit/12a181ce0542659f10b4ce154a10cfd41fa1f501)) +- Fix minor typos in documentation [#552](https://github.com/miguelgrinberg/flask-migrate/issues/552) ([commit](https://github.com/miguelgrinberg/flask-migrate/commit/3b073a2c500303894c495d2e4fa0ef449b6a2833)) (thanks **Kevin Kirsche**!) + **Release 4.0.7** - 2024-03-11 - Regression from #438: check `g.x_arg` exists before accessing it [#541](https://github.com/miguelgrinberg/flask-migrate/issues/541) ([commit](https://github.com/miguelgrinberg/flask-migrate/commit/7e8032c61e5c47f4e50b03dcf98c3b20dd5a8e55)) (thanks **Skye Im**!) diff --git a/pyproject.toml b/pyproject.toml index 4d638d8..9ea3305 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "Flask-Migrate" -version = "4.0.8.dev0" +version = "4.1.0" authors = [ { name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" }, ]