From e39d053d2f7ab22c8ef8ca49229eaa37b7b88aa4 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 9 Nov 2022 09:01:47 +0100 Subject: [PATCH] New release candidates (#1514) * New release candidates * Update axum/Cargo.toml Co-authored-by: Jonas Platte Co-authored-by: Jonas Platte --- axum-core/CHANGELOG.md | 4 ++++ axum-core/Cargo.toml | 2 +- axum-extra/CHANGELOG.md | 4 ++++ axum-extra/Cargo.toml | 2 +- axum-macros/CHANGELOG.md | 4 ++++ axum-macros/Cargo.toml | 2 +- axum/CHANGELOG.md | 4 ++++ axum/Cargo.toml | 6 +++--- 8 files changed, 22 insertions(+), 6 deletions(-) diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 1a64d889..3eefc21e 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.3.0-rc.3 (8. November, 2022) + - **added:** Add `DefaultBodyLimit::max` for changing the default body limit ([#1397]) - **added:** Add `Error::into_inner` for converting `Error` to `BoxError` without allocating ([#1476]) - **breaking:** `AppendHeaders` now works on any `impl IntoIterator` ([#1495]) diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index 044d23ed..fb173cb6 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-core" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.3.0-rc.2" # remember to also bump the version that axum depends on +version = "0.3.0-rc.3" # remember to also bump the version that axum depends on [dependencies] async-trait = "0.1" diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index de34d9c8..b5d0ab95 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning]. # Unreleased +- None. + +# 0.4.0-rc.2 (8. November, 2022) + - **breaking:** `Form` has a new rejection type ([#1496]) - **breaking:** `Query` has a new rejection type ([#1496]) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index debad59f..04e66001 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-extra" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.4.0-rc.1" +version = "0.4.0-rc.2" [features] default = [] diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index 5a5789c7..e91c838e 100644 --- a/axum-macros/CHANGELOG.md +++ b/axum-macros/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.3.0-rc.2 (8. November, 2022) + - **added:** Add `#[derive(FromRef)]` ([#1430]) [#1430]: https://github.com/tokio-rs/axum/pull/1430 diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index 0162e08f..e9bae065 100644 --- a/axum-macros/Cargo.toml +++ b/axum-macros/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-macros" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.3.0-rc.1" # remember to also bump the version that axum and axum-extra depends on +version = "0.3.0-rc.2" # remember to also bump the version that axum and axum-extra depends on [lib] proc-macro = true diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index a6d9e112..16922a0b 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.6.0-rc.3 (8. November, 2022) + - **changed**: The inner error of a `JsonRejection` is now `serde_path_to_error::Error`. Previously it was `serde_json::Error` ([#1371]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 01a6ea3d..3e8a92fe 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.6.0-rc.2" +version = "0.6.0-rc.3" categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" @@ -31,7 +31,7 @@ __private_docs = ["tower/full", "tower-http/full"] [dependencies] async-trait = "0.1.43" -axum-core = { path = "../axum-core", version = "=0.3.0-rc.2" } +axum-core = { path = "../axum-core", version = "=0.3.0-rc.3" } bitflags = "1.0" bytes = "1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] } @@ -52,7 +52,7 @@ tower-layer = "0.3" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.0-rc.1", optional = true } +axum-macros = { path = "../axum-macros", version = "=0.3.0-rc.2", optional = true } base64 = { version = "0.13", optional = true } headers = { version = "0.3.7", optional = true } multer = { version = "2.0.0", optional = true }