summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-01-09 13:54:49 +0100
committerGitHub <noreply@github.com>2023-01-09 13:54:49 +0100
commite3aaeb3cb7be5ae694c1d9c7a414790de7a23d30 (patch)
treed952f19b311f103780433334dc1fbb7b237c7e32
parent8d92902c8e4c2607e81ceaf1b1e7d516ca9cfff3 (diff)
Release axum, axum-core, and axum-macros (#1688)axum-v0.6.2axum-macros-v0.3.1axum-core-v0.3.1
-rw-r--r--axum-core/CHANGELOG.md4
-rw-r--r--axum-core/Cargo.toml2
-rw-r--r--axum-extra/Cargo.toml2
-rw-r--r--axum-macros/CHANGELOG.md6
-rw-r--r--axum-macros/Cargo.toml2
-rw-r--r--axum/CHANGELOG.md5
-rw-r--r--axum/Cargo.toml6
7 files changed, 20 insertions, 7 deletions
diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md
index c9161c8b..99811259 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.1 (9. January, 2023)
+
- **added:** Add `body_text` and `status` methods to built-in rejections ([#1612])
[#1612]: https://github.com/tokio-rs/axum/pull/1612
diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml
index 985b674f..e9d8b746 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" # remember to also bump the version that axum depends on
+version = "0.3.1" # remember to also bump the version that axum depends on
[dependencies]
async-trait = "0.1"
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index e3bbd9d7..938ea056 100644
--- a/axum-extra/Cargo.toml
+++ b/axum-extra/Cargo.toml
@@ -48,7 +48,7 @@ tower-layer = "0.3"
tower-service = "0.3"
# optional dependencies
-axum-macros = { path = "../axum-macros", version = "0.3.0", optional = true }
+axum-macros = { path = "../axum-macros", version = "0.3.1", optional = true }
cookie = { package = "cookie", version = "0.16", features = ["percent-encode"], optional = true }
percent-encoding = { version = "2.1", optional = true }
prost = { version = "0.11", optional = true }
diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md
index f80dd9d9..839e746f 100644
--- a/axum-macros/CHANGELOG.md
+++ b/axum-macros/CHANGELOG.md
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- None.
+# 0.3.1 (9. January, 2022)
+
+- **fixed:** Fix warnings for cloning references in generated code ([#1676])
+
+[#1676]: https://github.com/tokio-rs/axum/pull/1676
+
# 0.3.0 (25. November, 2022)
- **added:** Add `#[derive(FromRequestParts)]` for deriving an implementation of
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index 848354de..5c2dfd27 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" # remember to also bump the version that axum and axum-extra depends on
+version = "0.3.1" # 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 25b14a2e..151f63e4 100644
--- a/axum/CHANGELOG.md
+++ b/axum/CHANGELOG.md
@@ -7,13 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
+- None.
+
+# 0.6.2 (9. January, 2023)
+
- **added:** Add `body_text` and `status` methods to built-in rejections ([#1612])
- **added:** Enable the `runtime` feature of `hyper` when using `tokio` ([#1671])
[#1612]: https://github.com/tokio-rs/axum/pull/1612
[#1671]: https://github.com/tokio-rs/axum/pull/1671
-
# 0.6.1 (29. November, 2022)
- **added:** Expand the docs for `Router::with_state` ([#1580])
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index 5f335146..9e565936 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.6.1"
+version = "0.6.2"
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" }
+axum-core = { path = "../axum-core", version = "0.3.1" }
bitflags = "1.0"
bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
@@ -52,7 +52,7 @@ tower-layer = "0.3.2"
tower-service = "0.3"
# optional dependencies
-axum-macros = { path = "../axum-macros", version = "0.3.0", optional = true }
+axum-macros = { path = "../axum-macros", version = "0.3.1", optional = true }
base64 = { version = "0.20", optional = true }
headers = { version = "0.3.7", optional = true }
multer = { version = "2.0.0", optional = true }