diff --git a/docs/release-notes/changelog.rst b/docs/release-notes/changelog.rst index 4163761e7e..8bc8fb9a76 100644 --- a/docs/release-notes/changelog.rst +++ b/docs/release-notes/changelog.rst @@ -3,6 +3,20 @@ 2.x Changelog ============= +.. changelog:: 2.3.1 + :date: 2023/11/04 + + .. change:: CLI: Fix not providing SSL certfiles breaks uvicorn command when using reload or multiple workers + :type: bugfix + :pr: 2616 + :issue: 2613 + + Fix an issue where not providing the ``--ssl-certfile`` and ``--ssl-keyfile`` + options to the ``litestar run`` command would cause a :exc:`FileNotFoundError` + in uvicorn, when used together with the ``--reload``, ``--web-concurrency`` + options. + + .. changelog:: 2.3.0 :date: 2023/11/02 diff --git a/pyproject.toml b/pyproject.toml index b952fd9ed0..0dd0664e8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ maintainers = [ name = "litestar" readme = "README.md" requires-python = ">=3.8,<4.0" -version = "2.3.0" +version = "2.3.1" [project.urls] Blog = "https://blog.litestar.dev"