Skip to content

Commit a73dab4

Browse files
committed
Bump versions
1 parent f172389 commit a73dab4

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

axum-core/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.4.4
99

1010
- **added:** Derive `Clone` and `Copy` for `AppendHeaders` ([#2776])
1111
- **added:** `must_use` attribute on `AppendHeaders` ([#2846])

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.3" # remember to also bump the version that axum and axum-extra depend on
12+
version = "0.4.4" # remember to also bump the version that axum and axum-extra depend on
1313

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

axum-extra/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],
66
and this project adheres to [Semantic Versioning].
77

8-
# Unreleased
8+
# 0.9.4
99

1010
- **added:** The `response::Attachment` type ([#2789])
1111

axum-extra/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "axum-extra"
1010
readme = "README.md"
1111
repository = "https://github.com/tokio-rs/axum"
12-
version = "0.9.3"
12+
version = "0.9.4"
1313

1414
[features]
1515
default = ["tracing"]
@@ -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.2", default-features = false }
43-
axum-core = { path = "../axum-core", version = "0.4.3" }
42+
axum = { path = "../axum", version = "0.7.6", default-features = false }
43+
axum-core = { path = "../axum-core", version = "0.4.4" }
4444
bytes = "1.1.0"
4545
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4646
http = "1.0.0"
@@ -54,7 +54,7 @@ tower-layer = "0.3"
5454
tower-service = "0.3"
5555

5656
# optional dependencies
57-
axum-macros = { path = "../axum-macros", version = "0.4.1", optional = true }
57+
axum-macros = { path = "../axum-macros", version = "0.4.2", optional = true }
5858
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
5959
form_urlencoded = { version = "1.1.0", optional = true }
6060
headers = { version = "0.4.0", optional = true }

axum-macros/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.4.2
99

1010
- **added:** Add `#[debug_middleware]` ([#1993], [#2725])
1111

axum-macros/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-macros"
1010
readme = "README.md"
1111
repository = "https://github.com/tokio-rs/axum"
12-
version = "0.4.1" # remember to also bump the version that axum and axum-extra depends on
12+
version = "0.4.2" # remember to also bump the version that axum and axum-extra depends on
1313

1414
[features]
1515
default = []

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.6
99

1010
- **change:** Avoid cloning `Arc` during deserialization of `Path`
1111
- **added:** `axum::serve::Serve::tcp_nodelay` and `axum::serve::WithGracefulShutdown::tcp_nodelay` ([#2653])

axum/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum"
3-
version = "0.7.5"
3+
version = "0.7.6"
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.3" }
45+
axum-core = { path = "../axum-core", version = "0.4.4" }
4646
bytes = "1.0"
4747
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4848
http = "1.0.0"
@@ -62,7 +62,7 @@ tower-layer = "0.3.2"
6262
tower-service = "0.3"
6363

6464
# optional dependencies
65-
axum-macros = { path = "../axum-macros", version = "0.4.1", optional = true }
65+
axum-macros = { path = "../axum-macros", version = "0.4.2", optional = true }
6666
base64 = { version = "0.21.0", optional = true }
6767
hyper = { version = "1.1.0", optional = true }
6868
hyper-util = { version = "0.1.3", features = ["tokio", "server", "service"], optional = true }

0 commit comments

Comments
 (0)