From a63843d6c5039ee843469d1e0f9542205150b4fa Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Thu, 2 Dec 2021 20:02:38 +0100 Subject: [PATCH] Release axum, axum-core, and axum-extra (#582) --- axum-core/CHANGELOG.md | 4 ++++ axum-core/Cargo.toml | 2 +- axum-debug/Cargo.toml | 2 +- axum-extra/CHANGELOG.md | 4 ++++ axum-extra/Cargo.toml | 2 +- axum/CHANGELOG.md | 4 ++++ axum/Cargo.toml | 2 +- 7 files changed, 16 insertions(+), 4 deletions(-) diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 16a28cbb..b81268f9 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -8,3 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased - None. + +# 0.1.0 (02. December, 2021) + +- Initial release. diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index 7681c68f..1a3cad74 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -20,5 +20,5 @@ mime = "0.3.16" [dev-dependencies] futures-util = "0.3" -axum = { path = "../axum", version = "0.3" } +axum = { path = "../axum", version = "0.4" } hyper = "0.14" diff --git a/axum-debug/Cargo.toml b/axum-debug/Cargo.toml index 61982713..c0377e9b 100644 --- a/axum-debug/Cargo.toml +++ b/axum-debug/Cargo.toml @@ -19,6 +19,6 @@ quote = "1.0" syn = { version = "1.0", features = ["full"] } [dev-dependencies] -axum = { path = "../axum", version = "0.3" } +axum = { path = "../axum", version = "0.4" } trybuild = "1.0" rustversion = "1.0" diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 16a28cbb..b81268f9 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -8,3 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased - None. + +# 0.1.0 (02. December, 2021) + +- Initial release. diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 6501a50d..046cfe37 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -14,7 +14,7 @@ version = "0.1.0" erased-json = ["serde", "serde_json"] [dependencies] -axum = { path = "../axum", version = "0.3" } +axum = { path = "../axum", version = "0.4" } http = "0.2" mime = "0.3" tower-service = "0.3" diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 1c9d8311..d9470100 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.4.0 (02. December, 2021) + - **breaking:** New `MethodRouter` that works similarly to `Router`: - Route to handlers and services with the same type - Add middleware to some routes more easily with `MethodRouter::layer` and diff --git a/axum/Cargo.toml b/axum/Cargo.toml index a4500e1c..a3664fa9 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.3.3" +version = "0.4.0" categories = ["asynchronous", "network-programming", "web-programming"] description = "Web framework that focuses on ergonomics and modularity" edition = "2018"