diff --git a/docs/release-notes.md b/docs/release-notes.md index e2d48901..70400d71 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,13 @@ # Release Notes +## 0.1.2 + +October 25, 2022. + +### Changed + +- `add_routes` - Fixed the way the add_route was managing the paths and import to OpenAPI docs. + ## 0.1.1 October 25, 2022. diff --git a/esmerald/__init__.py b/esmerald/__init__.py index 3f0c3c11..1011f617 100644 --- a/esmerald/__init__.py +++ b/esmerald/__init__.py @@ -1,7 +1,7 @@ """ Esmerald: Highly scalable, performant, easy to learn and for every application. """ -__version__ = "0.1.1" +__version__ = "0.1.2" from esmerald.conf import settings from esmerald.conf.global_settings import EsmeraldAPISettings