Skip to content

Commit

Permalink
Release axum and axum-macros (#1721)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpdrsn committed Jan 24, 2023
1 parent 47be78e commit 4a5dc43
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions axum-macros/CHANGELOG.md
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion axum-macros/Cargo.toml
Expand Up @@ -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 = []
Expand Down
4 changes: 4 additions & 0 deletions axum/CHANGELOG.md
Expand Up @@ -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])
Expand Down
4 changes: 2 additions & 2 deletions axum/Cargo.toml
@@ -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"
Expand Down Expand Up @@ -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 }
Expand Down

0 comments on commit 4a5dc43

Please sign in to comment.