From b33790ff82ea8e76dbb63bbda02eb89cfdb0f627 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 26 Aug 2023 18:42:17 +0200 Subject: [PATCH] Version 0.31.1 (#2247) --- docs/release-notes.md | 9 +++++++++ starlette/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 89164262..d66b3709 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 0d83d600..7b31e06e 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.31.0" +__version__ = "0.31.1" -- 2.47.3