mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-25 00:28:07 +01:00
Release (#1923)
This commit is contained in:
parent
6b106f4bab
commit
51edc9c895
6 changed files with 18 additions and 6 deletions
|
@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- None.
|
||||
|
||||
# 0.3.4 (11. April, 2023)
|
||||
|
||||
- Changes to private APIs.
|
||||
|
||||
# 0.3.3 (03. March, 2023)
|
||||
|
||||
- **fixed:** Add `#[must_use]` attributes to types that do nothing unless used ([#1809])
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-core"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.3.3" # remember to also bump the version that axum and axum-extra depend on
|
||||
version = "0.3.4" # remember to also bump the version that axum and axum-extra depend on
|
||||
|
||||
[features]
|
||||
tracing = ["dep:tracing"]
|
||||
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.7.3 (11. April, 2023)
|
||||
|
||||
- **added:** Implement `Deref` and `DerefMut` for built-in extractors ([#1922])
|
||||
- **added:** Add `OptionalPath` extractor ([#1889])
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-extra"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.7.2"
|
||||
version = "0.7.3"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
@ -34,8 +34,8 @@ query = ["dep:serde_html_form"]
|
|||
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
|
||||
|
||||
[dependencies]
|
||||
axum = { path = "../axum", version = "0.6.9", default-features = false }
|
||||
axum-core = { path = "../axum-core", version = "0.3.3" }
|
||||
axum = { path = "../axum", version = "0.6.13", default-features = false }
|
||||
axum-core = { path = "../axum-core", version = "0.3.4" }
|
||||
bytes = "1.1.0"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
http = "0.2"
|
||||
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.6.13 (11. April, 2023)
|
||||
|
||||
- **added:** Log rejections from built-in extractors with the
|
||||
`axum::rejection=trace` target ([#1890])
|
||||
- **fixed:** Fixed performance regression with `Router::nest` introduced in
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "axum"
|
||||
version = "0.6.12"
|
||||
version = "0.6.13"
|
||||
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
||||
description = "Web framework that focuses on ergonomics and modularity"
|
||||
edition = "2021"
|
||||
|
@ -32,7 +32,7 @@ __private_docs = ["tower/full", "dep:tower-http"]
|
|||
|
||||
[dependencies]
|
||||
async-trait = "0.1.67"
|
||||
axum-core = { path = "../axum-core", version = "0.3.3" }
|
||||
axum-core = { path = "../axum-core", version = "0.3.4" }
|
||||
bitflags = "1.0"
|
||||
bytes = "1.0"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
|
|
Loading…
Reference in a new issue