Release axum and axum-extra (#1788)

This commit is contained in:
David Pedersen 2023-02-27 09:41:11 +01:00 committed by GitHub
parent 279a8e2bf0
commit 08bac36519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 9 deletions

View File

@ -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.
See the [static-file-server-example] for more examples ([#1784])
- **breaking:** Change casing of `ProtoBuf` to `Protobuf` ([#1595])
[#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)

View File

@ -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"

View File

@ -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"

View File

@ -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)

View File

@ -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"