Skip to content

Commit

Permalink
Version 0.1.9 (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
aminalaee authored May 27, 2022
1 parent d1cd1d6 commit 5701c79
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
9 changes: 8 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = sqladmin
version = 0.1.8
version = 0.1.9
author = Amin Alaee
author_email = [email protected]
description = Admin interface for SQLAlchemy.
Expand Down
2 changes: 1 addition & 1 deletion sqladmin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from sqladmin.application import Admin
from sqladmin.models import ModelAdmin

__version__ = "0.1.8"
__version__ = "0.1.9"

__all__ = [
"Admin",
Expand Down

0 comments on commit 5701c79

Please sign in to comment.