Skip to content

Commit 99c772d

Browse files
committed
Release openapi_type 0.3.0
1 parent d60a419 commit 99c772d

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [".", "./derive"]
55

66
[package]
77
name = "openapi_type"
8-
version = "0.2.4"
8+
version = "0.3.0"
99
authors = ["Dominic Meiser <[email protected]>"]
1010
edition = "2021"
1111
rust-version = "1.56"
@@ -18,7 +18,7 @@ include = ["src/**/*", "LICENSE", "crates-io.md"]
1818

1919
[dependencies]
2020
indexmap = "1.7"
21-
openapi_type_derive = { path = "./derive", version = "0.2.5" }
21+
openapi_type_derive = { path = "./derive", version = "0.3.0" }
2222
openapiv3 = "=1.0.0"
2323
serde_json = "1.0"
2424

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ limitations under the License.
9696
```
9797
9898
[contributors]: https://github.com/msrd0/openapi_type/graphs/contributors
99-
[__link0]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiType
100-
[__link1]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiType::schema
101-
[__link2]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiSchema
102-
[__link3]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiSchema::dependencies
99+
[__link0]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiType
100+
[__link1]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiType::schema
101+
[__link2]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiSchema
102+
[__link3]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiSchema::dependencies

crates-io.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ limitations under the License.
6767
```
6868
6969
[contributors]: https://github.com/msrd0/openapi_type/graphs/contributors
70-
[__link0]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiType
71-
[__link1]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiType::schema
72-
[__link2]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiSchema
73-
[__link3]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiSchema::dependencies
70+
[__link0]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiType
71+
[__link1]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiType::schema
72+
[__link2]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiSchema
73+
[__link3]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiSchema::dependencies

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[package]
44
workspace = ".."
55
name = "openapi_type_derive"
6-
version = "0.2.5"
6+
version = "0.3.0"
77
authors = ["Dominic Meiser <[email protected]>"]
88
edition = "2021"
99
rust-version = "1.56"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ impl OpenapiSchema {
134134
/// This trait needs to be implemented by every type that is being used in the OpenAPI Spec. It gives
135135
/// access to the [OpenapiSchema] of this type. It is provided for primitive types, String and the
136136
/// like. For use on your own types, there is a derive macro:
137-
///
137+
///
138138
/// ```
139139
/// # #[macro_use] extern crate openapi_type_derive;
140140
/// #

0 commit comments

Comments
 (0)