From 9f6be24ecd268bca80637415c04481f104401996 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Mon, 6 Dec 2021 13:03:13 +0100 Subject: [PATCH] axum: Version 0.4.2 (#592) * axum: Version 0.4.2 This time depending on the correct version of axum-core. * add missing changelog links --- axum-core/CHANGELOG.md | 4 +++- axum/CHANGELOG.md | 10 +++++++++- axum/Cargo.toml | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 22638f41..9d8e7456 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -11,7 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # 0.1.1 (06. December, 2021) -- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response`. +- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response` ([#590]) + +[#590]: https://github.com/tokio-rs/axum/pull/590 # 0.1.0 (02. December, 2021) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 6ce1e8b8..179eb4c5 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -9,9 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. +# 0.4.2 (06. December, 2021) + +- **fix:** Depend on the correct version of `axum-core` ([#592]) + +[#592]: https://github.com/tokio-rs/axum/pull/592 + # 0.4.1 (06. December, 2021) -- **added:** `axum::response::Response` now exists as a shorthand for writing `Response`. +- **added:** `axum::response::Response` now exists as a shorthand for writing `Response` ([#590]) + +[#590]: https://github.com/tokio-rs/axum/pull/590 # 0.4.0 (02. December, 2021) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 73b4930b..095fc519 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.4.1" +version = "0.4.2" categories = ["asynchronous", "network-programming", "web-programming"] description = "Web framework that focuses on ergonomics and modularity" edition = "2018" @@ -20,7 +20,7 @@ tower-log = ["tower/log"] ws = ["tokio-tungstenite", "sha-1", "base64"] [dependencies] -axum-core = { path = "../axum-core", version = "0.1" } +axum-core = { path = "../axum-core", version = "0.1.1" } async-trait = "0.1.43" bitflags = "1.0" bytes = "1.0"