diff --git a/docs/changelog/index.md b/docs/changelog/index.md index e90afe6e..c97def3b 100644 --- a/docs/changelog/index.md +++ b/docs/changelog/index.md @@ -5,6 +5,13 @@ 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). +## [0.11.1] - 2023-07-29 + +### Fixed + +* Bug Fix: Ensure Excluded fields from a RequestAction are not treated by [@jowilf](https://github.com/jowilf) + in [#251](https://github.com/jowilf/starlette-admin/pull/251) + ## [0.11.0] - 2023-07-26 ### Added diff --git a/starlette_admin/__init__.py b/starlette_admin/__init__.py index 03fc1aa1..99bf7172 100644 --- a/starlette_admin/__init__.py +++ b/starlette_admin/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.11.1.dev" +__version__ = "0.11.1.dev0" from ._types import ExportType, RequestAction from .actions import action