From 4e818eca563123bd5627014b1327719aa59f9852 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Fri, 6 Sep 2024 08:56:12 +0200 Subject: [PATCH 1/2] Version 0.19.0 --- sqladmin/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqladmin/__init__.py b/sqladmin/__init__.py index de850b87..fb876066 100644 --- a/sqladmin/__init__.py +++ b/sqladmin/__init__.py @@ -1,7 +1,7 @@ from sqladmin.application import Admin, action, expose from sqladmin.models import BaseView, ModelView -__version__ = "0.18.0" +__version__ = "0.19.0" __all__ = [ "Admin", From 7caecd03577d396e8abd5d3fcf0e6d6f995765b3 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Fri, 6 Sep 2024 08:57:16 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0bf535f..fd509da6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Version 0.19.0 - 2024-09-06 + +### Added +* Add favicon by @sheldygg in https://github.com/aminalaee/sqladmin/pull/787 +* Add tabler icons by @r-m-n in https://github.com/aminalaee/sqladmin/pull/795 +* feat: use favicon_url instead of logo_url for favicon by @alex-lambdaloopers in https://github.com/aminalaee/sqladmin/pull/800 +* Allow multiple ajax sorts and changes to result size by @mfriedy in https://github.com/aminalaee/sqladmin/pull/805 + +### Fixed +* Fix column_property by @aminalaee in https://github.com/aminalaee/sqladmin/pull/791 +* Fix page number issue when changing page size by @numberbee7070 in https://github.com/aminalaee/sqladmin/pull/782 +* Document update to resolve DeprecationWarning from Starlette (#809) by @a4rcvv in https://github.com/aminalaee/sqladmin/pull/810 +* Bug fix: unhandled exception during AjaxSelect load by @diskream in https://github.com/aminalaee/sqladmin/pull/727 + +**Full Changelog**: https://github.com/aminalaee/sqladmin/compare/0.18.0...0.19.0 + ## Version 0.18.0 - 2024-07-01 ### Added