From 7b391d85c8b5fc820b1734a7e42469fb78408588 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Thu, 26 Aug 2021 08:57:07 +0200 Subject: [PATCH] Version 0.2.2 (#271) 0.2.2 (24. August, 2021) - **fixed:** Fix URI captures matching empty segments. This means requests with URI `/` will no longer be matched by `/:key` ([#264](https://github.com/tokio-rs/axum/pull/264)) - **fixed:** Remove needless trait bounds from `Router::boxed` ([#264](https://github.com/tokio-rs/axum/pull/264)) --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 772df5c3..2b2a8196 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.2.2 (24. August, 2021) + - **fixed:** Fix URI captures matching empty segments. This means requests with URI `/` will no longer be matched by `/:key` ([#264](https://github.com/tokio-rs/axum/pull/264)) - **fixed:** Remove needless trait bounds from `Router::boxed` ([#264](https://github.com/tokio-rs/axum/pull/264)) diff --git a/Cargo.toml b/Cargo.toml index 46487291..3e4f5b5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.2.1" +version = "0.2.2" [workspace] members = ["examples/*"]