From 3d78711e47351d9ac02837eff527703d4f88c454 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Mon, 8 Nov 2021 19:01:32 +0100 Subject: [PATCH] Version 0.3.2 (#483) - **added:** Add `Router::route_layer` for applying middleware that will only run on requests that match a route. This is useful for middleware that return early, such as authorization ([#474]) [#474]: https://github.com/tokio-rs/axum/pull/474 --- axum/CHANGELOG.md | 7 ++++++- axum/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index be2d7693..2d082f4a 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,8 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None + +# 0.3.2 (08. November, 2021) + - **added:** Add `Router::route_layer` for applying middleware that - will only run on requests that match a route ([#474]) + will only run on requests that match a route. This is useful for middleware + that return early, such as authorization ([#474]) [#474]: https://github.com/tokio-rs/axum/pull/474 diff --git a/axum/Cargo.toml b/axum/Cargo.toml index f401fa8c..9a43c631 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.3.1" +version = "0.3.2" authors = ["David Pedersen "] categories = ["asynchronous", "network-programming", "web-programming"] description = "Web framework that focuses on ergonomics and modularity"