diff --git a/docs/release-notes.md b/docs/release-notes.md index a6bb1c1c..0ddeafb7 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,19 @@ # Release Notes +## 2.0.3 + +!!! Note + This addition was supposed to go in the release [2.0.2](#202) but somehow it was missed in the merge of + the pull requests. It is not a bug fix but instead is a simple new + [directive](./directives/shell.md) that can be useful for those who like using the command-line. + + It is important to understand that this support **won't be available on releases** of Esmerald + 1.X. + +### Added + +- [Interactive shell](./directives/shell.md) support directive for any Esmerald application. + ## 2.0.2 ### Changed diff --git a/esmerald/__init__.py b/esmerald/__init__.py index 366455c2..b369a8f3 100644 --- a/esmerald/__init__.py +++ b/esmerald/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0.2" +__version__ = "2.0.3" from starlette import status