From c3d310bf1de64e78674afc5dfb588b645dbc09f4 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sun, 3 Dec 2023 21:27:27 +0000 Subject: [PATCH] Release v0.1.0a3 (#826) --- CHANGES.rst | 8 ++++++++ aiohttp_admin/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index ce2de1ff..a2d87053 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,14 @@ CHANGES .. towncrier release notes start +0.1.0a3 (2023-12-03) +==================== + +- Used ``AppKey`` with aiohttp 3.9. +- Added Python 3.12 support. +- Added support for dynamically loaded components. +- Reverted a change which broke relationship fields. + 0.1.0a2 (2023-10-02) ==================== diff --git a/aiohttp_admin/__init__.py b/aiohttp_admin/__init__.py index 145faba7..24ea8417 100644 --- a/aiohttp_admin/__init__.py +++ b/aiohttp_admin/__init__.py @@ -14,7 +14,7 @@ from .types import Schema, State, UserDetails, check_credentials_key, permission_re_key, state_key __all__ = ("Permissions", "Schema", "UserDetails", "permission_re_key", "setup") -__version__ = "0.1.0a2" +__version__ = "0.1.0a3" @web.middleware