Skip to content

Commit

Permalink
Release axum 0.8.2 and related crates (#3188)
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte authored Jan 21, 2025
1 parent 6df26a3 commit 5966849
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion axum-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# Unreleased
# 0.5.1

- **change:** Make the `status` function for rejections generated by the
`__define_rejection` and `__composite_rejection` macros a `const` function
Expand Down
2 changes: 1 addition & 1 deletion axum-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "axum-core"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.5.0" # remember to bump the version that axum and axum-extra depend on
version = "0.5.1" # remember to bump the version that axum and axum-extra depend on

[features]
tracing = ["dep:tracing"]
Expand Down
2 changes: 1 addition & 1 deletion axum-extra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog],
and this project adheres to [Semantic Versioning].

# Unreleased
# 0.11.0

- **breaking:** Remove unused `async-stream` feature, which was accidentally
introduced as an implicit feature through an optional dependency which was no
Expand Down
6 changes: 3 additions & 3 deletions axum-extra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.10.0"
version = "0.11.0"

[features]
default = ["tracing"]
Expand Down Expand Up @@ -48,8 +48,8 @@ __private_docs = [
]

[dependencies]
axum = { path = "../axum", version = "0.8.0", default-features = false, features = ["original-uri"] }
axum-core = { path = "../axum-core", version = "0.5.0" }
axum = { path = "../axum", version = "0.8.2", default-features = false, features = ["original-uri"] }
axum-core = { path = "../axum-core", version = "0.5.1" }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion axum/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# Unreleased
# 0.8.1

- **added:** Implement `OptionalFromRequest` for `Json` ([#3142])
- **added:** Implement `OptionalFromRequest` for `Extension` ([#3157])
Expand Down
4 changes: 2 additions & 2 deletions axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.8.1" # remember to bump the version that axum-extra depends on
version = "0.8.2" # remember to bump the version that axum-extra depends on
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"
Expand Down Expand Up @@ -50,7 +50,7 @@ __private_docs = [
__private = ["tokio", "http1", "dep:reqwest"]

[dependencies]
axum-core = { path = "../axum-core", version = "0.5.0" }
axum-core = { path = "../axum-core", version = "0.5.1" }
bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"
Expand Down

0 comments on commit 5966849

Please sign in to comment.