mirror of
https://github.com/tokio-rs/axum.git
synced 2025-03-13 19:27:53 +01:00
Release axum and axum-macros (#1721)
This commit is contained in:
parent
47be78e0b3
commit
4a5dc4391c
4 changed files with 11 additions and 3 deletions
|
@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- None.
|
||||
|
||||
# 0.3.2 (22. January, 2022)
|
||||
|
||||
- No public API changes.
|
||||
|
||||
# 0.3.1 (9. January, 2022)
|
||||
|
||||
- **fixed:** Fix warnings for cloning references in generated code ([#1676])
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-macros"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.3.1" # remember to also bump the version that axum and axum-extra depends on
|
||||
version = "0.3.2" # remember to also bump the version that axum and axum-extra depends on
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- None.
|
||||
|
||||
# 0.6.4 (22. January, 2023)
|
||||
|
||||
- Depend on axum-macros 0.3.2
|
||||
|
||||
# 0.6.3 (20. January, 2023)
|
||||
|
||||
- **added:** Implement `IntoResponse` for `&'static [u8; N]` and `[u8; N]` ([#1690])
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "axum"
|
||||
version = "0.6.3"
|
||||
version = "0.6.4"
|
||||
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
||||
description = "Web framework that focuses on ergonomics and modularity"
|
||||
edition = "2021"
|
||||
|
@ -52,7 +52,7 @@ tower-layer = "0.3.2"
|
|||
tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.1", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.2", optional = true }
|
||||
base64 = { version = "0.20", optional = true }
|
||||
headers = { version = "0.3.7", optional = true }
|
||||
multer = { version = "2.0.0", optional = true }
|
||||
|
|
Loading…
Add table
Reference in a new issue