Skip to content

Commit fe56a31

Browse files
committed
Bump versions
1 parent ac50d7d commit fe56a31

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

axum-core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
# 0.4.5
9+
10+
- **fixed:** Compile errors from the internal `__log_rejection` macro under
11+
certain Cargo feature combinations between axum crates ([#2933])
12+
13+
[#2933]: https://github.com/tokio-rs/axum/pull/2933
14+
815
# 0.4.4
916

1017
- **added:** Derive `Clone` and `Copy` for `AppendHeaders` ([#2776])

axum-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "axum-core"
1010
readme = "README.md"
1111
repository = "https://github.com/tokio-rs/axum"
12-
version = "0.4.4" # remember to also bump the version that axum and axum-extra depend on
12+
version = "0.4.5" # remember to also bump the version that axum and axum-extra depend on
1313

1414
[features]
1515
tracing = ["dep:tracing"]

axum-extra/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ typed-header = ["dep:headers"]
3939
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
4040

4141
[dependencies]
42-
axum = { path = "../axum", version = "0.7.6", default-features = false }
43-
axum-core = { path = "../axum-core", version = "0.4.4" }
42+
axum = { path = "../axum", version = "0.7.7", default-features = false }
43+
axum-core = { path = "../axum-core", version = "0.4.5" }
4444
bytes = "1.1.0"
4545
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4646
http = "1.0.0"

axum/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
# Unreleased
8+
# 0.7.7
99

1010
- **change**: Remove manual tables of content from the documentation, since
1111
rustdoc now generates tables of content in the sidebar ([#2921])

axum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum"
3-
version = "0.7.6"
3+
version = "0.7.7"
44
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2021"
@@ -42,7 +42,7 @@ __private_docs = ["tower/full", "dep:tower-http"]
4242

4343
[dependencies]
4444
async-trait = "0.1.67"
45-
axum-core = { path = "../axum-core", version = "0.4.4" }
45+
axum-core = { path = "../axum-core", version = "0.4.5" }
4646
bytes = "1.0"
4747
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4848
http = "1.0.0"

0 commit comments

Comments
 (0)