From: Marcelo Trylesinski Date: Sat, 26 Aug 2023 16:42:17 +0000 (+0200) Subject: Version 0.31.1 (#2247) X-Git-Tag: 0.31.1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b33790ff82ea8e76dbb63bbda02eb89cfdb0f627;p=thirdparty%2Fstarlette.git Version 0.31.1 (#2247) --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 891642628..d66b37097 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,12 @@ +## 0.31.1 + +August 26, 2023 + +### Fixed + +* Fix import error when `exceptiongroup` isn't available [#2231](https://github.com/encode/starlette/pull/2231). +* Set `url_for` global for custom Jinja environments [#2230](https://github.com/encode/starlette/pull/2230). + ## 0.31.0 July 24, 2023 diff --git a/starlette/__init__.py b/starlette/__init__.py index 0d83d6008..7b31e06e9 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.31.0" +__version__ = "0.31.1"