diff --git a/docs/release-notes.md b/docs/release-notes.md index 48a65bad..d7ec9a07 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -5,6 +5,19 @@ hide: # Release Notes +## 0.11.1 + +### Added + +- [create_schema](./tenancy/edgy.md#the-schema-creation) allowing a dynamic and programatically +way of creating schemas in the database. + +### Changed + +- Updated `reflection` from `edgy.ReflectModel` to use the internal database session and avoid +deadlocks. +- Internal cleaning for tenancy. + ## 0.11.0 ### Added diff --git a/edgy/__init__.py b/edgy/__init__.py index 2282596a..68ec05ee 100644 --- a/edgy/__init__.py +++ b/edgy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.11.0" +__version__ = "0.11.1" from .cli.base import Migrate from .conf import settings