Skip to content

Commit 5966849

Browse files
authored
Release axum 0.8.2 and related crates (#3188)
1 parent 6df26a3 commit 5966849

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

1010
- **change:** Make the `status` function for rejections generated by the
1111
`__define_rejection` and `__composite_rejection` macros a `const` function

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.5.0" # remember to bump the version that axum and axum-extra depend on
12+
version = "0.5.1" # remember to 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.11.0
99

1010
- **breaking:** Remove unused `async-stream` feature, which was accidentally
1111
introduced as an implicit feature through an optional dependency which was no

axum-extra/Cargo.toml

Lines changed: 3 additions & 3 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.10.0"
12+
version = "0.11.0"
1313

1414
[features]
1515
default = ["tracing"]
@@ -48,8 +48,8 @@ __private_docs = [
4848
]
4949

5050
[dependencies]
51-
axum = { path = "../axum", version = "0.8.0", default-features = false, features = ["original-uri"] }
52-
axum-core = { path = "../axum-core", version = "0.5.0" }
51+
axum = { path = "../axum", version = "0.8.2", default-features = false, features = ["original-uri"] }
52+
axum-core = { path = "../axum-core", version = "0.5.1" }
5353
bytes = "1.1.0"
5454
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
5555
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.8.1
99

1010
- **added:** Implement `OptionalFromRequest` for `Json` ([#3142])
1111
- **added:** Implement `OptionalFromRequest` for `Extension` ([#3157])

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.8.1" # remember to bump the version that axum-extra depends on
3+
version = "0.8.2" # remember to bump the version that axum-extra depends on
44
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2021"
@@ -50,7 +50,7 @@ __private_docs = [
5050
__private = ["tokio", "http1", "dep:reqwest"]
5151

5252
[dependencies]
53-
axum-core = { path = "../axum-core", version = "0.5.0" }
53+
axum-core = { path = "../axum-core", version = "0.5.1" }
5454
bytes = "1.0"
5555
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
5656
http = "1.0.0"

0 commit comments

Comments
 (0)