diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index 66fc6203..40550827 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.2.9 (20. October, 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]) diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml index 39f9b503..b57a2d14 100644 --- a/axum-core/Cargo.toml +++ b/axum-core/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "axum-core" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.2.8" # remember to also bump the version that axum depends on +version = "0.2.9" # remember to also bump the version that axum depends on [dependencies] async-trait = "0.1" diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 7f4eea99..628f5f45 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -29,7 +29,7 @@ __private_docs = ["tower/full", "tower-http/full"] [dependencies] async-trait = "0.1.43" -axum-core = { path = "../axum-core", version = "0.2.8" } +axum-core = { path = "../axum-core", version = "0.2.9" } bitflags = "1.0" bytes = "1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] }