diff --git a/Cargo.toml b/Cargo.toml index 78fd94c0e..40688a57c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [".", "./derive"] [package] name = "openapi_type" -version = "0.2.4" +version = "0.3.0" authors = ["Dominic Meiser "] edition = "2021" rust-version = "1.56" @@ -18,7 +18,7 @@ include = ["src/**/*", "LICENSE", "crates-io.md"] [dependencies] indexmap = "1.7" -openapi_type_derive = { path = "./derive", version = "0.2.5" } +openapi_type_derive = { path = "./derive", version = "0.3.0" } openapiv3 = "=1.0.0" serde_json = "1.0" diff --git a/README.md b/README.md index dd73aab58..4bda00e9d 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ limitations under the License. ``` [contributors]: https://github.com/msrd0/openapi_type/graphs/contributors - [__link0]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiType - [__link1]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiType::schema - [__link2]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiSchema - [__link3]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiSchema::dependencies + [__link0]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiType + [__link1]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiType::schema + [__link2]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiSchema + [__link3]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiSchema::dependencies diff --git a/crates-io.md b/crates-io.md index 05d749c36..52b076c0e 100644 --- a/crates-io.md +++ b/crates-io.md @@ -67,7 +67,7 @@ limitations under the License. ``` [contributors]: https://github.com/msrd0/openapi_type/graphs/contributors - [__link0]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiType - [__link1]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiType::schema - [__link2]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiSchema - [__link3]: https://docs.rs/openapi_type/0.2.4/openapi_type/?search=openapi_type::OpenapiSchema::dependencies + [__link0]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiType + [__link1]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiType::schema + [__link2]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiSchema + [__link3]: https://docs.rs/openapi_type/0.3.0/openapi_type/?search=openapi_type::OpenapiSchema::dependencies diff --git a/derive/Cargo.toml b/derive/Cargo.toml index b7ea4caab..ea34da298 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -3,7 +3,7 @@ [package] workspace = ".." name = "openapi_type_derive" -version = "0.2.5" +version = "0.3.0" authors = ["Dominic Meiser "] edition = "2021" rust-version = "1.56" diff --git a/src/lib.rs b/src/lib.rs index 77010c167..c3441ed80 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -134,7 +134,7 @@ impl OpenapiSchema { /// This trait needs to be implemented by every type that is being used in the OpenAPI Spec. It gives /// access to the [OpenapiSchema] of this type. It is provided for primitive types, String and the /// like. For use on your own types, there is a derive macro: -/// +/// /// ``` /// # #[macro_use] extern crate openapi_type_derive; /// #