Skip to content

Commit

Permalink
Bump version patch to 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtbuilds committed Feb 15, 2024
1 parent 950a731 commit 82b284a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oasgen-core"
version = "0.20.0"
version = "0.20.1"
edition = "2021"
authors = ["Kurt Wolf <kurtwolfbuilds@gmail.com>"]
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)."
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oasgen-macro"
version = "0.20.0"
version = "0.20.1"
edition = "2021"
authors = ["Kurt Wolf <kurtwolfbuilds@gmail.com>"]
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)."
Expand All @@ -18,7 +18,7 @@ proc-macro = true
syn = { version = "2", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0.64"
oasgen-core = { path = "../core" , version = "0.20.0"}
oasgen-core = { path = "../core" , version = "0.20.1"}
structmeta = "0.2.0"
serde_derive_internals = "0.29.0"

Expand Down
6 changes: 3 additions & 3 deletions oasgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oasgen"
version = "0.20.0"
version = "0.20.1"
edition = "2021"
authors = ["Kurt Wolf <kurtwolfbuilds@gmail.com>"]
description = "Generates OpenAPI 3.0 spec based on Rust code. Works with axum, actix-web, or independent of a web framework."
Expand Down Expand Up @@ -45,8 +45,8 @@ futures = "0.3.28"
http = "1.0.0"
indexmap = "2"
openapiv3-extended = { version = "6" }
oasgen-core = { path = "../core", version = "0.20.0"}
oasgen-macro = { path = "../macro", version = "0.20.0"}
oasgen-core = { path = "../core", version = "0.20.1"}
oasgen-macro = { path = "../macro", version = "0.20.1"}
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.100"
serde_yaml = "0.9.22"
Expand Down

0 comments on commit 82b284a

Please sign in to comment.