Skip to content

Commit

Permalink
Release v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte committed Jan 12, 2025
1 parent 68cdbaa commit 7bdfa12
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/aide-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aide-macros"
version = "0.7.0"
version = "0.8.0"
authors = ["tamasfe"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
19 changes: 17 additions & 2 deletions crates/aide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
# Changelog

## Unreleased
## 0.14.0

- **breaking:** Upgrade `axum` to `0.8` ([#168])
- **breaking:** Rename `gen` module to `generate`,
because `gen` is going to be a keyword in Rust 2024 ([#174])

- **breaking:** Replace `axum-wasm` feature with inverted `axum-tokio`
Cargo feature ([#170])
- **breaking:** Put axum extractor impls behind more fine-grained
Cargo features, see `Cargo.toml` or the docs.rs feature flags page
for a full list ([#170])
- **breaking:** Drop `serde_qs`, `jwt-authorizer` features, please
open an issue if you were relying on one of these ([#170])
- **fixed:** Remove trailing / from some nested paths ([#150])
- **added:** `[api_]route_with_tsr[_and]` methods to `ApiRouter`,
gated behind the `axum-extra` Cargo feature ([#139])

[#139]: https://github.com/tamasfe/aide/pull/139
[#150]: https://github.com/tamasfe/aide/pull/150
[#168]: https://github.com/tamasfe/aide/pull/168
[#170]: https://github.com/tamasfe/aide/pull/170
[#174]: https://github.com/tamasfe/aide/pull/174

## 0.13.5
Expand Down
2 changes: 1 addition & 1 deletion crates/aide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1"
thiserror = "2.0"
tracing = "0.1"
aide-macros = { version = "0.7.0", path = "../aide-macros", optional = true }
aide-macros = { version = "0.8.0", path = "../aide-macros", optional = true }

bytes = { version = "1", optional = true }
http = { version = "1.0.0", optional = true }
Expand Down

0 comments on commit 7bdfa12

Please sign in to comment.