diff --git a/docs/release-notes.md b/docs/release-notes.md index f6d59e6d5..f298b33de 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,11 @@ +## 0.20.2 + +June 7, 2022 + +### Fixed +* Fix regression on route paths with colons [#1675](https://github.com/encode/starlette/pull/1675). +* Allow `StaticFiles` to follow symlinks [#1337](https://github.com/encode/starlette/pull/1377). + ## 0.20.1 May 28, 2022 diff --git a/starlette/__init__.py b/starlette/__init__.py index ac8240464..be6f6da96 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.20.1" +__version__ = "0.20.2"