From 86e2844c9378fe44ff6c0d79abf20a340c89ba16 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Mon, 5 Apr 2021 21:12:23 +0100 Subject: [PATCH] v0.8.3 --- CHANGELOG.md | 2 +- docs/1.1-attributes.md | 3 --- schemars/Cargo.toml | 4 ++-- schemars_derive/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aae0596..2bb4d22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.8.3] - **In-dev** +## [0.8.3] - 2021-04-05 ### Added: - Support for `#[schemars(crate = "...")]` attribute to allow deriving JsonSchema when the schemars crate is aliased to a different name (https://github.com/GREsau/schemars/pull/55 / https://github.com/GREsau/schemars/pull/80) - Implement `JsonSchema` for `bytes::Bytes` and `bytes::BytesMut` (https://github.com/GREsau/schemars/pull/68) diff --git a/docs/1.1-attributes.md b/docs/1.1-attributes.md index 50bc753..9260ea1 100644 --- a/docs/1.1-attributes.md +++ b/docs/1.1-attributes.md @@ -182,15 +182,12 @@ Set on a container, variant or field to include the result of the given function Set the Rust built-in [`deprecated`](https://doc.rust-lang.org/edition-guide/rust-2018/the-compiler/an-attribute-for-deprecation.html) attribute on a struct, enum, field or variant to set the generated schema's `deprecated` keyword to `true`. -

diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index 1ef5862..6fe3121 100644 --- a/schemars/Cargo.toml +++ b/schemars/Cargo.toml @@ -3,7 +3,7 @@ name = "schemars" description = "Generate JSON Schemas from Rust code" homepage = "https://graham.cool/schemars/" repository = "https://github.com/GREsau/schemars" -version = "0.8.2" +version = "0.8.3" authors = ["Graham Esau "] edition = "2018" license = "MIT" @@ -13,7 +13,7 @@ categories = ["encoding"] build = "build.rs" [dependencies] -schemars_derive = { version = "=0.8.2", optional = true, path = "../schemars_derive" } +schemars_derive = { version = "=0.8.3", optional = true, path = "../schemars_derive" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" dyn-clone = "1.0" diff --git a/schemars_derive/Cargo.toml b/schemars_derive/Cargo.toml index 05e84cf..0535f1d 100644 --- a/schemars_derive/Cargo.toml +++ b/schemars_derive/Cargo.toml @@ -3,7 +3,7 @@ name = "schemars_derive" description = "Macros for #[derive(JsonSchema)], for use with schemars" homepage = "https://graham.cool/schemars/" repository = "https://github.com/GREsau/schemars" -version = "0.8.2" +version = "0.8.3" authors = ["Graham Esau "] edition = "2018" license = "MIT"