From 653afdcfd3a6ba04113d3ce7e65b52f78d8dbcd6 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Wed, 21 Feb 2024 10:01:00 +0100 Subject: [PATCH] Version 0.16.1 (#717) --- CHANGELOG.md | 17 +++++++++++++++++ sqladmin/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62c3c417..6f3b7b1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. 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.16.1 - 2024-02-20 + +### Fixed + +* Re-add http_exception handler to Admin class in https://github.com/aminalaee/sqladmin/pull/694 +* Move non-field-specific errors to top of edit and create forms in https://github.com/aminalaee/sqladmin/pull/707 +* Fix sort by model attribute in https://github.com/aminalaee/sqladmin/pull/713 +* Fix Category not respecting is_visible and is_accessible in https://github.com/aminalaee/sqladmin/pull/698 + +## New Contributors +* @kostyaten made their first contribution in https://github.com/aminalaee/sqladmin/pull/677 +* @EnotShow made their first contribution in https://github.com/aminalaee/sqladmin/pull/703 +* @jonocodes made their first contribution in https://github.com/aminalaee/sqladmin/pull/707 +* @Neverfan1 made their first contribution in https://github.com/aminalaee/sqladmin/pull/698 + +**Full Changelog**: https://github.com/aminalaee/sqladmin/compare/0.16.0...0.16.1 + ## Version 0.16.0 - 2023-11-14 ### Added diff --git a/sqladmin/__init__.py b/sqladmin/__init__.py index 59cc76f9..ac226526 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.16.0" +__version__ = "0.16.1" __all__ = [ "Admin",