summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-02-27 09:41:11 +0100
committerGitHub <noreply@github.com>2023-02-27 09:41:11 +0100
commit08bac36519d134b99340c13fa7783f01f10b8b69 (patch)
tree098baf620eed8322438ac43d392ea80eef6986d8
parent279a8e2bf041d91499e68472da9f7ca650b9bd16 (diff)
Release axum and axum-extra (#1788)axum-v0.6.9axum-extra-v0.6.0
-rw-r--r--axum-extra/CHANGELOG.md11
-rw-r--r--axum-extra/Cargo.toml4
-rw-r--r--axum-macros/Cargo.toml2
-rw-r--r--axum/CHANGELOG.md8
-rw-r--r--axum/Cargo.toml2
5 files changed, 18 insertions, 9 deletions
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index 9e6e00de..ed745ec8 100644
--- a/axum-extra/CHANGELOG.md
+++ b/axum-extra/CHANGELOG.md
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning].
# Unreleased
+- None.
+
+# 0.6.0 (24. February, 2022)
+
+- **breaking:** Change casing of `ProtoBuf` to `Protobuf` ([#1595])
- **breaking:** `SpaRouter` has been removed. Use `ServeDir` and `ServeFile`
from `tower-http` instead:
@@ -27,12 +32,10 @@ and this project adheres to [Semantic Versioning].
);
```
- See the [static-file-server-example] for more examples.
-
-- **breaking:** Change casing of `ProtoBuf` to `Protobuf` ([#1595])
+ See the [static-file-server-example] for more examples ([#1784])
-[#1783]: https://github.com/tokio-rs/axum/pull/1783
[#1595]: https://github.com/tokio-rs/axum/pull/1595
+[#1784]: https://github.com/tokio-rs/axum/pull/1784
[static-file-server-example]: https://github.com/tokio-rs/axum/blob/main/examples/static-file-server/src/main.rs
# 0.5.0 (12. February, 2022)
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index 01f9cec6..87325b7c 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.5.0"
+version = "0.6.0"
[features]
default = []
@@ -35,7 +35,7 @@ spa = ["tower-http/fs"]
typed-routing = ["dep:axum-macros", "dep:serde", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
[dependencies]
-axum = { path = "../axum", version = "0.6.0", default-features = false }
+axum = { path = "../axum", version = "0.6.9", default-features = false }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "0.2"
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index 46e73be3..be6c3f3c 100644
--- a/axum-macros/Cargo.toml
+++ b/axum-macros/Cargo.toml
@@ -30,7 +30,7 @@ syn = { version = "1.0", features = [
[dev-dependencies]
axum = { path = "../axum", version = "0.6.0", features = ["headers", "macros"] }
-axum-extra = { path = "../axum-extra", version = "0.5.0", features = ["typed-routing", "cookie-private"] }
+axum-extra = { path = "../axum-extra", version = "0.6.0", features = ["typed-routing", "cookie-private"] }
rustversion = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index ead4c57f..d3ace200 100644
--- a/axum/CHANGELOG.md
+++ b/axum/CHANGELOG.md
@@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
-- **changed:** Update to tower-http 0.4. axum is still compatible with tower-http 0.3
+- None.
+
+# 0.6.9 (24. February, 2023)
+
+- **changed:** Update to tower-http 0.4. axum is still compatible with tower-http 0.3 ([#1783])
+
+[#1783]: https://github.com/tokio-rs/axum/pull/1783
# 0.6.8 (24. February, 2023)
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index 7ac9bdb1..c9441a69 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.6.8"
+version = "0.6.9"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"