From c9aeb1badf2b350de559e9a0c7ac619776a05d2d Mon Sep 17 00:00:00 2001 From: Serge Koval Date: Mon, 27 Aug 2018 01:11:42 -0400 Subject: [PATCH] Bumped version --- doc/changelog.rst | 19 +++++++++++++++++++ flask_admin/__init__.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 0ec63abaf..57579c6c7 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,25 @@ Changelog ========= +1.5.2 +----- + +* Fixed XSS vulnerability +* Fixed Peewee support +* Added detail view column formatters +* Updated Flask-Login example to work with the newer version of the library +* Various SQLAlchemy-related fixes +* Various Windows related fixes for the file admin + +1.5.1 +----- + +* Dropped Python 2.6 support +* Fixed SQLAlchemy >= 1.2 compatibility +* Fixed Pewee 3.0 compatibility +* Fixed max year for a combo date inline editor +* Lots of small bug fixes + 1.5.0 ----- diff --git a/flask_admin/__init__.py b/flask_admin/__init__.py index 4414bb106..ec2d5ac84 100644 --- a/flask_admin/__init__.py +++ b/flask_admin/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.5.0' +__version__ = '1.5.2' __author__ = 'Flask-Admin team' __email__ = 'serge.koval+github@gmail.com'