From a5b008838f303bedb0d7490abdb2905842e7a108 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Fri, 10 Mar 2023 00:06:30 +0100 Subject: [PATCH] Version 0.26.0 (#2071) Co-authored-by: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> --- docs/release-notes.md | 18 ++++++++++++++++++ starlette/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 454c69b9..5e432afd 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,21 @@ +## 0.26.0 + +March 9, 2023 + +### Added + +* Support [lifespan state](/lifespan/) [#2060](https://github.com/encode/starlette/pull/2060), + [#2065](https://github.com/encode/starlette/pull/2065) and [#2064](https://github.com/encode/starlette/pull/2064). + +### Changed +* Change `url_for` signature to return a `URL` instance [#1385](https://github.com/encode/starlette/pull/1385). + +### Fixed +* Allow "name" argument on `url_for()` and `url_path_for()` [#2050](https://github.com/encode/starlette/pull/2050). + +### Deprecated +* Deprecate `on_startup` and `on_shutdown` events [#2070](https://github.com/encode/starlette/pull/2070). + ## 0.25.0 February 14, 2023 diff --git a/starlette/__init__.py b/starlette/__init__.py index 6fea77c0..7c4a9591 100644 --- a/starlette/__init__.py +++ b/starlette/__init__.py @@ -1 +1 @@ -__version__ = "0.25.0" +__version__ = "0.26.0" -- 2.47.3