diff --git a/docs/release-notes.md b/docs/release-notes.md index ce9ca9c2..3fa5d0a1 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -6,6 +6,14 @@ hide: # Release Notes +## 0.19.1 + +### Fixed + +- Migration issues with ManyToMany fields. +- Wrong UUIDField type. +- Passing options from Migrate to the alembic context. + ## 0.19.0 ### Added diff --git a/edgy/__init__.py b/edgy/__init__.py index 807345f5..01c072e7 100644 --- a/edgy/__init__.py +++ b/edgy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.19.0" +__version__ = "0.19.1" from .cli.base import Migrate from .conf import settings