Release axum, axum-macros, and axum-extra (#1843)

This commit is contained in:
David Pedersen 2023-03-13 11:00:13 +01:00 committed by GitHub
parent fe9c4a0b5b
commit 1133425d6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 5 deletions

View file

@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning].
- None.
# 0.7.1 (13. March, 2023)
- Updated to latest `axum-macros`
# 0.7.0 (03. March, 2023)
- **breaking:** Remove the `spa` feature which should have been removed in 0.6.0 ([#1802])

View file

@ -9,7 +9,7 @@ license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.7.0"
version = "0.7.1"
[features]
default = []
@ -48,7 +48,7 @@ tower-layer = "0.3"
tower-service = "0.3"
# optional dependencies
axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true }
axum-macros = { path = "../axum-macros", version = "0.3.6", optional = true }
cookie = { package = "cookie", version = "0.17", features = ["percent-encode"], optional = true }
form_urlencoded = { version = "1.1.0", optional = true }
multer = { version = "2.0.0", optional = true }

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
- None.
# 0.3.6 (13. March, 2023)
- **fixed:** Improve `#[debug_handler]` message for known generic
request-consuming extractors ([#1826])

View file

@ -9,7 +9,7 @@ license = "MIT"
name = "axum-macros"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.3.5" # remember to also bump the version that axum and axum-extra depends on
version = "0.3.6" # remember to also bump the version that axum and axum-extra depends on
[features]
default = []

View file

@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
- None.
# 0.6.11 (13. March, 2023)
- **fixed:** Don't require `S: Debug` for `impl Debug for Router<S>` ([#1836])
- **fixed:** Clone state a bit less when handling requests ([#1837])
- **fixed:** Unpin itoa dependency ([#1815])
[#1815]: https://github.com/tokio-rs/axum/pull/1815
[#1836]: https://github.com/tokio-rs/axum/pull/1836
[#1837]: https://github.com/tokio-rs/axum/pull/1837

View file

@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.6.10"
version = "0.6.11"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"
@ -51,7 +51,7 @@ tower-layer = "0.3.2"
tower-service = "0.3"
# optional dependencies
axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true }
axum-macros = { path = "../axum-macros", version = "0.3.6", optional = true }
base64 = { version = "0.21.0", optional = true }
headers = { version = "0.3.7", optional = true }
multer = { version = "2.0.0", optional = true }