mirror of
https://github.com/tokio-rs/axum.git
synced 2026-09-08 00:00:24 +02:00
Release axum v0.8.7 and axum-extra v0.12.2
This commit is contained in:
Generated
+2
-2
@@ -292,7 +292,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "axum"
|
name = "axum"
|
||||||
version = "0.8.6"
|
version = "0.8.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"axum-core",
|
"axum-core",
|
||||||
@@ -362,7 +362,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "axum-extra"
|
name = "axum-extra"
|
||||||
version = "0.12.1"
|
version = "0.12.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"axum",
|
"axum",
|
||||||
"axum-core",
|
"axum-core",
|
||||||
|
|||||||
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog],
|
The format is based on [Keep a Changelog],
|
||||||
and this project adheres to [Semantic Versioning].
|
and this project adheres to [Semantic Versioning].
|
||||||
|
|
||||||
|
# 0.12.2
|
||||||
|
|
||||||
|
- Make it easier to visually scan for default features ([#3550])
|
||||||
|
|
||||||
|
[#3550]: https://github.com/tokio-rs/axum/pull/3550
|
||||||
|
|
||||||
# 0.12.1
|
# 0.12.1
|
||||||
|
|
||||||
This release contains no changes in code, only a small `Cargo.toml` fix for
|
This release contains no changes in code, only a small `Cargo.toml` fix for
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ license = "MIT"
|
|||||||
name = "axum-extra"
|
name = "axum-extra"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/axum"
|
repository = "https://github.com/tokio-rs/axum"
|
||||||
version = "0.12.1"
|
version = "0.12.2"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["tracing"]
|
default = ["tracing"]
|
||||||
@@ -89,7 +89,7 @@ tower-layer = "0.3"
|
|||||||
tower-service = "0.3"
|
tower-service = "0.3"
|
||||||
|
|
||||||
# optional dependencies
|
# optional dependencies
|
||||||
axum = { path = "../axum", version = "0.8.4", default-features = false, optional = true }
|
axum = { path = "../axum", version = "0.8.7", default-features = false, optional = true }
|
||||||
axum-macros = { path = "../axum-macros", version = "0.5.0", optional = true }
|
axum-macros = { path = "../axum-macros", version = "0.5.0", optional = true }
|
||||||
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
|
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
|
||||||
fastrand = { version = "2.1.0", optional = true }
|
fastrand = { version = "2.1.0", optional = true }
|
||||||
|
|||||||
@@ -5,6 +5,15 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
# 0.8.7
|
||||||
|
|
||||||
|
- Relax implicit `Send` / `Sync` bounds on `RouterAsService`, `RouterIntoService` ([#3555])
|
||||||
|
- Make it easier to visually scan for default features ([#3550])
|
||||||
|
- Fix some documentation typos
|
||||||
|
|
||||||
|
[#3550]: https://github.com/tokio-rs/axum/pull/3550
|
||||||
|
[#3555]: https://github.com/tokio-rs/axum/pull/3555
|
||||||
|
|
||||||
# 0.8.6
|
# 0.8.6
|
||||||
|
|
||||||
Released without changes to fix docs.rs build.
|
Released without changes to fix docs.rs build.
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "axum"
|
name = "axum"
|
||||||
version = "0.8.6" # remember to bump the version that axum-extra depends on
|
version = "0.8.7" # remember to bump the version that axum-extra depends on
|
||||||
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
||||||
description = "Web framework that focuses on ergonomics and modularity"
|
description = "Web framework that focuses on ergonomics and modularity"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
Reference in New Issue
Block a user