diff --git a/Cargo.toml b/Cargo.toml index 5f5e060..ee78df2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,8 @@ members = ["oasgen", "core", "macro", "swagger-ui"] [workspace.dependencies] -oasgen = { path = "oasgen", version = "0.23" } -oasgen-core = { path = "core", version = "0.23" } -oasgen-macro = { path = "macro", version = "0.23" } +oasgen = { path = "oasgen", version = "0.24" } +oasgen-core = { path = "core", version = "0.24" } +oasgen-macro = { path = "macro", version = "0.24" } swagger-ui2 = { version = "0.6", path = "swagger-ui" } diff --git a/core/Cargo.toml b/core/Cargo.toml index e99d2cd..57306a8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oasgen-core" -version = "0.23.0" +version = "0.24.0" edition = "2021" authors = ["Kurt Wolf "] description = "Dependency of oasgen. Generates OpenAPI 3.0 spec based on Rust code. Works with actix-web, but architected to easily extend to other frameworks (or no framework)." diff --git a/macro/Cargo.toml b/macro/Cargo.toml index a13f777..04c882f 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oasgen-macro" -version = "0.23.0" +version = "0.24.0" edition = "2021" authors = ["Kurt Wolf "] description = "Dependency of oasgen. Generates OpenAPI 3.0 spec based on Rust code. Works with actix-web, but architected to easily extend to other frameworks (or no framework)." diff --git a/oasgen/Cargo.toml b/oasgen/Cargo.toml index b01843f..47c4712 100644 --- a/oasgen/Cargo.toml +++ b/oasgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oasgen" -version = "0.23.0" +version = "0.24.0" edition = "2021" authors = ["Kurt Wolf "] description = "Generates OpenAPI 3.0 spec based on Rust code. Works with axum, actix-web, or independent of a web framework."