Skip to content

Commit

Permalink
Release (#2510)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpdrsn committed Jan 13, 2024
1 parent 4511673 commit 9ebd105
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 10 deletions.
4 changes: 4 additions & 0 deletions axum-core/CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- None.

# 0.4.3 (13. January, 2024)

- **added:** Implement `IntoResponseParts` for `()` ([#2471])

[#2471]: https://github.com/tokio-rs/axum/pull/2471
Expand Down
2 changes: 1 addition & 1 deletion axum-core/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "axum-core"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.4.2" # remember to also bump the version that axum and axum-extra depend on
version = "0.4.3" # remember to also bump the version that axum and axum-extra depend on

[features]
tracing = ["dep:tracing"]
Expand Down
4 changes: 4 additions & 0 deletions axum-extra/CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].

# Unreleased

- None.

# 0.9.2 (13. January, 2024)

- **added:** Implement `TypedPath` for `WithRejection<TypedPath, _>`
- **fixed:** Documentation link to `serde::Deserialize` in `JsonDeserializer` extractor ([#2498])
- **added:** Add `is_missing` function for `TypedHeaderRejection` and `TypedHeaderRejectionReason` ([#2503])
Expand Down
6 changes: 3 additions & 3 deletions axum-extra/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.9.1"
version = "0.9.2"

[features]
default = []
Expand Down Expand Up @@ -38,7 +38,7 @@ typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form

[dependencies]
axum = { path = "../axum", version = "0.7.2", default-features = false }
axum-core = { path = "../axum-core", version = "0.4.2" }
axum-core = { path = "../axum-core", version = "0.4.3" }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"
Expand All @@ -52,7 +52,7 @@ tower-layer = "0.3"
tower-service = "0.3"

# optional dependencies
axum-macros = { path = "../axum-macros", version = "0.4.0", optional = true }
axum-macros = { path = "../axum-macros", version = "0.4.1", optional = true }
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
form_urlencoded = { version = "1.1.0", optional = true }
headers = { version = "0.4.0", optional = true }
Expand Down
4 changes: 4 additions & 0 deletions axum-macros/CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- None.

# 0.4.1 (13. January, 2024)

- **fixed:** Improve `debug_handler` on tuple response types ([#2201])

[#2201]: https://github.com/tokio-rs/axum/pull/2201
Expand Down
2 changes: 1 addition & 1 deletion axum-macros/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "axum-macros"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.4.0" # remember to also bump the version that axum and axum-extra depends on
version = "0.4.1" # remember to also bump the version that axum and axum-extra depends on

[features]
default = []
Expand Down
6 changes: 5 additions & 1 deletion axum/CHANGELOG.md
Expand Up @@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Unreleased

- **fixed:** Improve `debug_handler` on tuple response types ([#2201])
- None.

# 0.7.4 (13. January, 2024)

- **fixed:** Fix performance regression present since axum 0.7.0 ([#2483])
- **fixed:** Improve `debug_handler` on tuple response types ([#2201])
- **added:** Add `must_use` attribute to `Serve` and `WithGracefulShutdown` ([#2484])
- **added:** Re-export `axum_core::body::BodyDataStream` from axum

Expand Down
8 changes: 4 additions & 4 deletions axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.7.3"
version = "0.7.4"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"
Expand Down Expand Up @@ -42,7 +42,7 @@ __private_docs = ["tower/full", "dep:tower-http"]

[dependencies]
async-trait = "0.1.67"
axum-core = { path = "../axum-core", version = "0.4.2" }
axum-core = { path = "../axum-core", version = "0.4.3" }
bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"
Expand All @@ -61,7 +61,7 @@ tower-layer = "0.3.2"
tower-service = "0.3"

# optional dependencies
axum-macros = { path = "../axum-macros", version = "0.4.0", optional = true }
axum-macros = { path = "../axum-macros", version = "0.4.1", optional = true }
base64 = { version = "0.21.0", optional = true }
hyper = { version = "1.1.0", optional = true }
hyper-util = { version = "0.1.2", features = ["tokio", "server", "server-auto"], optional = true }
Expand Down Expand Up @@ -114,7 +114,7 @@ rustversion = "1.0.9"

[dev-dependencies]
anyhow = "1.0"
axum-macros = { path = "../axum-macros", version = "0.4.0", features = ["__private"] }
axum-macros = { path = "../axum-macros", version = "0.4.1", features = ["__private"] }
quickcheck = "1.0"
quickcheck_macros = "1.0"
reqwest = { version = "0.11.14", default-features = false, features = ["json", "stream", "multipart"] }
Expand Down

0 comments on commit 9ebd105

Please sign in to comment.