From 63948e34919d62556c66266e67a3f3ecdfa7af8d Mon Sep 17 00:00:00 2001 From: Jocelin Hounon Date: Tue, 16 Jan 2024 18:02:09 -0600 Subject: [PATCH] Release 0.13.0 (#475) * Release 0.13.0 * update changelog * update changelog * RC3 * release --- docs/changelog/index.md | 15 +++++---------- starlette_admin/__init__.py | 2 +- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/docs/changelog/index.md b/docs/changelog/index.md index cd5384ee..63d53d59 100644 --- a/docs/changelog/index.md +++ b/docs/changelog/index.md @@ -7,24 +7,21 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -## [0.13.0-rc2] - 2023-01-14 +## [0.13.0] - 2023-01-16 ### Added +* Enhance AuthMiddleware, introduce `@login_not_required` decorator and `allow_routes`, deprecate `allow_paths` + by [@jowilf](https://github.com/jowilf) + in [#474](https://github.com/jowilf/starlette-admin/pull/474) * Add a search bar on detail page to search by attributes or values by [@hasansezertasan](https://github.com/hasansezertasan) in [#461](https://github.com/jowilf/starlette-admin/pull/461) - * Refactor TinyMCEEditorField: support custom TinyMCE configuration by [@hasansezertasan](https://github.com/hasansezertasan) in [#380](https://github.com/jowilf/starlette-admin/pull/380) - -## [0.13.0-rc1] - 2023-12-23 - -### Added - * Add support for SQLAlchemy `column_property` by [@jowilf](https://github.com/jowilf) - in [#402](https://github.com/jowilf/starlette-admin/pull/402) + in [#408](https://github.com/jowilf/starlette-admin/pull/408) * Add support for SQLAlchemy Models with Multiple Primary Keys by [@jowilf](https://github.com/jowilf) in [#402](https://github.com/jowilf/starlette-admin/pull/402) * Adds `AdminConfig` to override `app_title` and `logo_url` in the templates @@ -35,8 +32,6 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). * Support translation for login form placeholders by [@hasansezertasan](https://github.com/hasansezertasan) in [#425](https://github.com/jowilf/starlette-admin/pull/425) -* Update AuthMiddleware for Compatibility with Starlette >= 0.33 by [@jowilf](https://github.com/jowilf) - in [#427](https://github.com/jowilf/starlette-admin/pull/427) * Fixes actions docstrings by [@mrharpo](https://github.com/mrharpo) in [#401](https://github.com/jowilf/starlette-admin/pull/401) diff --git a/starlette_admin/__init__.py b/starlette_admin/__init__.py index 9bb96793..a80a38ac 100644 --- a/starlette_admin/__init__.py +++ b/starlette_admin/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.13.0rc2" +__version__ = "0.13.0" from ._types import ExportType as ExportType from ._types import RequestAction as RequestAction