summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-01-20 23:51:19 +0100
committerGitHub <noreply@github.com>2023-01-20 23:51:19 +0100
commit6ff6b36293b4a24f3be8a8ab7d33981705cd2d86 (patch)
tree8a644a3813c95a4353c8e0b583da9bab4dda129f
parent5b0729600148d4a7e09bfe60c40b8ad034432271 (diff)
Release axum and axum-core (#1716)axum-v0.6.3axum-core-v0.3.2
-rw-r--r--axum-core/CHANGELOG.md4
-rw-r--r--axum-core/Cargo.toml2
-rw-r--r--axum/CHANGELOG.md6
-rw-r--r--axum/Cargo.toml4
4 files changed, 12 insertions, 4 deletions
diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md
index 4bae359c..2202a061 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.2 (20. January, 2023)
+
- **added:** Implement `IntoResponse` for `&'static [u8; N]` and `[u8; N]` ([#1690])
[#1690]: https://github.com/tokio-rs/axum/pull/1690
diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml
index e9d8b746..1035f0ec 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.1" # remember to also bump the version that axum depends on
+version = "0.3.2" # remember to also bump the version that axum depends on
[dependencies]
async-trait = "0.1"
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index f312e3b7..d82bf016 100644
--- a/axum/CHANGELOG.md
+++ b/axum/CHANGELOG.md
@@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
+- None.
+
+# 0.6.3 (20. January, 2023)
+
- **added:** Implement `IntoResponse` for `&'static [u8; N]` and `[u8; N]` ([#1690])
-- **fixed:** Make `Path` support types uses `serde::Deserializer::deserialize_any` ([#1693])
+- **fixed:** Make `Path` support types using `serde::Deserializer::deserialize_any` ([#1693])
- **added:** Add `RawPathParams` ([#1713])
- **added:** Implement `Clone` and `Service` for `axum::middleware::Next` ([#1712])
- **fixed:** Document required tokio features to run "Hello, World!" example ([#1715])
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index 0dd60f9f..b9a81fc4 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.6.2"
+version = "0.6.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.1" }
+axum-core = { path = "../axum-core", version = "0.3.2" }
bitflags = "1.0"
bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }