Skip to content

Commit 23c4d3d

Browse files
committed
Publish aide 0.16.0-alpha.3
1 parent 65cc1f2 commit 23c4d3d

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

crates/aide-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aide-macros"
3-
version = "0.16.0-alpha.2" # remember to update the dependency in aide, even for patch releases
3+
version = "0.16.0-alpha.3" # remember to update the dependency in aide, even for patch releases
44
authors = ["tamasfe"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

crates/aide/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.16.0-alpha.3
4+
5+
- **fixed:** Inferred early responses for `input_with` and `axum::Json` ([#287])
6+
- **fixed:** Support deserializating any v3.1.x spec, instead of just v3.1.0 ([#291])
7+
- **added:** `impl OperationOutput for axum_extra::response::Attachment` ([#276])
8+
- **docs:** Fixed axum doctest examples ([#286])
9+
10+
[#276]: https://github.com/tamasfe/aide/pull/276
11+
[#286]: https://github.com/tamasfe/aide/pull/286
12+
[#287]: https://github.com/tamasfe/aide/pull/287
13+
[#291]: https://github.com/tamasfe/aide/pull/291
14+
315
## 0.16.0-alpha.2
416

517
- **fixed:** Use `StatusCode` instead of `u16` in `OperationIo` derive output ([#271])

crates/aide/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aide"
3-
version = "0.16.0-alpha.2"
3+
version = "0.16.0-alpha.3"
44
authors = ["tamasfe"]
55
edition = "2021"
66
keywords = ["generate", "api", "openapi", "documentation", "specification"]
@@ -16,7 +16,7 @@ serde = { version = "1.0.144", features = ["derive"] }
1616
serde_json = "1"
1717
thiserror = "2.0"
1818
tracing = "0.1"
19-
aide-macros = { version = "=0.16.0-alpha.2", path = "../aide-macros", optional = true }
19+
aide-macros = { version = "=0.16.0-alpha.3", path = "../aide-macros", optional = true }
2020

2121
bytes = { version = "1", optional = true }
2222
http = { version = "1.0.0", optional = true }

0 commit comments

Comments
 (0)