Skip to content

Commit 32ee7f4

Browse files
committed
v0.4.0
1 parent 82cea31 commit 32ee7f4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

examples/json-web-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2018"
66

77
[dependencies]
88
schemars = "0.7.0"
9-
okapi = { version = "0.3.0", path = "../../okapi" }
10-
rocket_okapi = { version = "0.3.0", path = "../../rocket-okapi" }
9+
okapi = { version = "0.4.0", path = "../../okapi" }
10+
rocket_okapi = { version = "0.4.0", path = "../../rocket-okapi" }
1111
rocket = { version = "0.4.3", default-features = false }
1212
serde = "1.0"
1313

okapi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "okapi"
33
description = "Structs for OpenAPI (AKA Swagger) documents"
44
repository = "https://github.com/GREsau/okapi"
5-
version = "0.3.0"
5+
version = "0.4.0"
66
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
77
edition = "2018"
88
license = "MIT"

rocket-okapi-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rocket_okapi_codegen"
33
description = "Macros supporting rocket_okapi"
44
repository = "https://github.com/GREsau/okapi"
5-
version = "0.3.6"
5+
version = "0.4.0"
66
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
77
edition = "2018"
88
license = "MIT"

rocket-okapi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
name = "rocket_okapi"
33
description = "OpenAPI (AKA Swagger) document generation for Rocket applications"
44
repository = "https://github.com/GREsau/okapi"
5-
version = "0.3.6"
5+
version = "0.4.0"
66
authors = ["Graham Esau <gesau@hotmail.co.uk>"]
77
edition = "2018"
88
license = "MIT"
99
keywords = ["rust", "openapi", "swagger", "rocket"]
1010

1111
[dependencies]
1212
schemars = "0.7.0"
13-
okapi = { version = "0.3.0", path = "../okapi" }
14-
rocket_okapi_codegen = { version = "=0.3.6", path = "../rocket-okapi-codegen" }
13+
okapi = { version = "0.4.0", path = "../okapi" }
14+
rocket_okapi_codegen = { version = "=0.4.0", path = "../rocket-okapi-codegen" }
1515
rocket = { version = "0.4.3", default-features = false }
1616
serde = "1.0"
1717
serde_json = "1.0"

0 commit comments

Comments
 (0)