diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 1a64d889ff..3eefc21e73 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 044d23ed82..fb173cb6ef 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 de34d9c887..b5d0ab9557 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 debad59f86..04e66001ba 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 5a5789c7cd..e91c838ef5 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 0162e08f55..e9bae06547 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 a6d9e1120a..16922a0b2e 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 01a6ea3d49..3e8a92fe1b 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 }