From 5701c7905a1e8c6ea8f2bcfbf7ff68517f64c572 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Fri, 27 May 2022 16:07:57 +0200 Subject: [PATCH] Version 0.1.9 (#154) --- CHANGELOG.md | 13 ++++++++++--- docs/changelog.md | 9 ++++++++- setup.cfg | 2 +- sqladmin/__init__.py | 2 +- 4 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05c1e034..0c723bab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,19 @@ 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). -## Unrealeased +## Version 0.1.9 - 2022-05-27 ### Added -* Add `column_formatters` by @skarrok in https://github.com/aminalaee/sqladmin/pull/140 -* Add `column_formatters_detail` by @aminalaee in https://github.com/aminalaee/sqladmin/pull/141 +* Add column_formatters by @skarrok in https://github.com/aminalaee/sqladmin/pull/140 +* Add column_formatters_detail by @aminalaee in https://github.com/aminalaee/sqladmin/pull/141 +* Handling for sqlalchemy_utils EmailType and IPAddressType by @colin99d in https://github.com/aminalaee/sqladmin/pull/150 +* Link relationships to detail page by @aminalaee in https://github.com/aminalaee/sqladmin/pull/153 + +### Fixed + +* Function signature typing, and renames by @dwreeves in https://github.com/aminalaee/sqladmin/pull/116 +* Fix SQLModel UUID type by @aminalaee in https://github.com/aminalaee/sqladmin/pull/158 ## Version 0.1.8 - 2022-04-19 diff --git a/docs/changelog.md b/docs/changelog.md index b2910668..4e497d12 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,12 +4,19 @@ 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). -## Unrealeased +## Version 0.1.9 - 2022-05-27 ### Added * Add `column_formatters` in [#140](https://github.com/aminalaee/sqladmin/pull/140) * Add `column_formatters_detail` in [#141](https://github.com/aminalaee/sqladmin/pull/141) +* Handling for sqlalchemy_utils EmailType and IPAddressType in [#150](https://github.com/aminalaee/sqladmin/pull/150) +* Link relationships to detail page in [#153](https://github.com/aminalaee/sqladmin/pull/153) + +### Fixed + +* Function signature typing, and renames in [#116](https://github.com/aminalaee/sqladmin/pull/116) +* Fix SQLModel UUID type in [#158](https://github.com/aminalaee/sqladmin/pull/158) ## Version 0.1.8 - 2022-04-19 diff --git a/setup.cfg b/setup.cfg index 47e80f5c..ff51a6fe 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = sqladmin -version = 0.1.8 +version = 0.1.9 author = Amin Alaee author_email = mohammadamin.alaee@gmail.com description = Admin interface for SQLAlchemy. diff --git a/sqladmin/__init__.py b/sqladmin/__init__.py index a33895b7..8776719f 100644 --- a/sqladmin/__init__.py +++ b/sqladmin/__init__.py @@ -1,7 +1,7 @@ from sqladmin.application import Admin from sqladmin.models import ModelAdmin -__version__ = "0.1.8" +__version__ = "0.1.9" __all__ = [ "Admin",