diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 5210a690..e3bb03cf 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -5,6 +5,21 @@ hide: # Release Notes +## 3.3.5 + +This was missed from the release [3.3.4](#334) and it was supposed to be included. + +### Added + +- Native types for Esmerald transformer models/ +- Hashing list internally for the signature allowing lists to be declared for OpenAPI representation. + +### Changed + +- Query parameters when declared as `list`, `List`, `dict` and `Dict` automatically parses the values +to the declared type. +- OpenAPI understands the native types, objects and lists (arrays). + ## 3.3.4 ### Added diff --git a/esmerald/__init__.py b/esmerald/__init__.py index 64e93a90..06b26b21 100644 --- a/esmerald/__init__.py +++ b/esmerald/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.3.4" +__version__ = "3.3.5" from lilya import status