From 9a082a74b0a1641b44e31cfaac9cbc69a2e0e238 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Tue, 24 Aug 2021 12:53:57 +0200 Subject: [PATCH] Version 0.2.1 (#256) 0.2.1 (24. August, 2021) - **added:** Add `Redirect::to` constructor ([#255](https://github.com/tokio-rs/axum/pull/255)) - **added:** Document how to implement `IntoResponse` for custom error type ([#258](https://github.com/tokio-rs/axum/pull/258)) --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6a2e4af..d312e172 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 +- 👀 + +# 0.2.1 (24. August, 2021) + - **added:** Add `Redirect::to` constructor ([#255](https://github.com/tokio-rs/axum/pull/255)) - **added:** Document how to implement `IntoResponse` for custom error type ([#258](https://github.com/tokio-rs/axum/pull/258)) diff --git a/Cargo.toml b/Cargo.toml index 3ad9bab9..4147c244 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.0" +version = "0.2.1" [workspace] members = ["examples/*"]