From 651e20fb4153df9973d8d9967d715bf8554eeef3 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Tue, 23 May 2023 10:36:07 +0330 Subject: [PATCH] Version 0.11.0 (#500) --- CHANGELOG.md | 11 +++++++++++ docs/changelog.md | 11 +++++++++++ sqladmin/__init__.py | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9e42726..2d57d00a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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.11.0 - 2023-05-23 + +### Added + +* Add ability to specify custom actions by @murrple-1 in https://github.com/aminalaee/sqladmin/pull/486 +* Add `ChoiceType` by @aminalaee in https://github.com/aminalaee/sqladmin/pull/482 +* Add sqlalchemy_fields URLType converter by @aminalaee in https://github.com/aminalaee/sqladmin/pull/493 +* Upgrade fontawesome by @aminalaee in https://github.com/aminalaee/sqladmin/pull/481 + +**Full Changelog**: https://github.com/aminalaee/sqladmin/compare/0.10.3...0.11.0 + ## Version 0.10.3 - 2023-04-21 ### Fixed diff --git a/docs/changelog.md b/docs/changelog.md index e0af6b86..7d5b5826 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,17 @@ 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.11.0 - 2023-05-23 + +### Added + +* Add ability to specify custom actions in [#486](https://github.com/aminalaee/sqladmin/pull/486) +* Add `ChoiceType` in [#482](https://github.com/aminalaee/sqladmin/pull/482) +* Add sqlalchemy_fields URLType converter in [#493](https://github.com/aminalaee/sqladmin/pull/493) +* Upgrade fontawesome in [#481](https://github.com/aminalaee/sqladmin/pull/481) + +**Full Changelog**: https://github.com/aminalaee/sqladmin/compare/0.10.3...0.11.0 + ## Version 0.10.3 - 2023-04-21 ### Fixed diff --git a/sqladmin/__init__.py b/sqladmin/__init__.py index a6aba11a..92ff98bb 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, ModelAdmin, ModelView -__version__ = "0.10.3" +__version__ = "0.11.0" __all__ = [ "Admin",