Skip to content

Commit

Permalink
Version 0.10.0 (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
aminalaee authored Mar 15, 2023
1 parent 3aa9125 commit 4eccf67
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ 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.10.0 - 2023-03-15

### Breaking change

* Change AuthenticationBackend `authenticate` signature to support OAuth in https://github.com/aminalaee/sqladmin/pull/440

### Added

* Add File field in https://github.com/aminalaee/sqladmin/pull/424
* Support SQLALchemy Interval type in https://github.com/aminalaee/sqladmin/pull/438

### Fixed

* Fix docstrings by @linomp in https://github.com/aminalaee/sqladmin/pull/434
* Update to work with Starlette URL type in url_for by @aminalaee in https://github.com/aminalaee/sqladmin/pull/444
* Fix nullable Integers to accept zero value by @ovginkel in [#445](https://github.com/aminalaee/sqladmin/pull/445)

**Full Changelog**: https://github.com/aminalaee/sqladmin/compare/0.9.0...0.10.0

## Version 0.9.0 - 2023-02-07

### Added
Expand Down
17 changes: 17 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ 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.10.0 - 2023-03-15

### Breaking change

* Change AuthenticationBackend `authenticate` signature to support OAuth in [#440](https://github.com/aminalaee/sqladmin/pull/440)

### Added

* Add File field in [#424](https://github.com/aminalaee/sqladmin/pull/424)
* Support SQLALchemy Interval type in [#438](https://github.com/aminalaee/sqladmin/pull/438)

### Fixed

* Fix docstrings in [#434](https://github.com/aminalaee/sqladmin/pull/434)
* Update to work with Starlette URL type in url_for in [#444](https://github.com/aminalaee/sqladmin/pull/444)
* Fix nullable Integers to accept zero value in [#445](https://github.com/aminalaee/sqladmin/pull/445)

## Version 0.9.0 - 2023-02-07

### 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.9.0"
__version__ = "0.10.0"

__all__ = [
"Admin",
Expand Down

0 comments on commit 4eccf67

Please sign in to comment.