From ab2d48ad3711e3fd097414facdf2e91cd3475754 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Mon, 28 Oct 2024 13:15:06 +0000 Subject: [PATCH] Version 0.20.1 (#846) --- CHANGELOG.md | 9 +++++++++ sqladmin/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0272d8e4..b03d6783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ 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.20.1 - 2024-10-28 + +### Fixed + +* Fix export json related model by @Vasiliy566 in https://github.com/aminalaee/sqladmin/pull/837 +* Fix JSON export trailing comma by @jbrendel in https://github.com/aminalaee/sqladmin/pull/843 + +**Full Changelog**: https://github.com/aminalaee/sqladmin/compare/0.20.0...0.20.1 + ## Version 0.20.0 - 2024-10-17 ### Added diff --git a/sqladmin/__init__.py b/sqladmin/__init__.py index 0ae68f0f..c4bd9f71 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.20.0" +__version__ = "0.20.1" __all__ = [ "Admin",