Skip to content

Commit

Permalink
Version 0.6.0 (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
aminalaee authored Sep 19, 2022
1 parent 58cc0d5 commit b1d6200
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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.6.0 - 2022-09-19

### Added

* Add bulk delete action by @aminalaee in https://github.com/aminalaee/sqladmin/pull/317

### Fixed

* Handle null values when column is nullable by @aminalaee in https://github.com/aminalaee/sqladmin/pull/323
* Switch Boolean field to select field by @aminalaee in https://github.com/aminalaee/sqladmin/pull/321

### Internal

* Fix form_ajax_refs example in documentation by @GitBib in https://github.com/aminalaee/sqladmin/pull/311
* Remove watch in mkdocstrings mkdocs's config by @ischaojie in https://github.com/aminalaee/sqladmin/pull/306

**Full Changelog**: https://github.com/aminalaee/sqladmin/compare/0.5.0...0.6.0

## Version 0.5.0 - 2022-09-06

### Added
Expand Down
16 changes: 16 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ 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.6.0 - 2022-09-19

### Added

* Add bulk delete action in [#317](https://github.com/aminalaee/sqladmin/pull/317)

### Fixed

* Handle null values when column is nullable in [#323](https://github.com/aminalaee/sqladmin/pull/323)
* Switch Boolean field to select field in [#321](https://github.com/aminalaee/sqladmin/pull/321)

### Internal

* Fix form_ajax_refs example in documentation in [#311](https://github.com/aminalaee/sqladmin/pull/311)
* Remove watch in mkdocstrings mkdocs's config in [#306](https://github.com/aminalaee/sqladmin/pull/306)

## Version 0.5.0 - 2022-09-06

### Added
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, expose
from sqladmin.models import BaseView, ModelAdmin, ModelView

__version__ = "0.5.0"
__version__ = "0.6.0"

__all__ = [
"Admin",
Expand Down

0 comments on commit b1d6200

Please sign in to comment.