From 00e482c3a19e7b3e15f8a0de99c7d717bf96595f Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Sun, 19 Sep 2021 10:43:29 +0100 Subject: [PATCH] v0.8.4 --- CHANGELOG.md | 2 +- docs/1.1-attributes.md | 2 -- schemars/Cargo.toml | 4 ++-- schemars_derive/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab27de2..5792dd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.8.4] - **In-dev** +## [0.8.4] - 2021-09-19 ### Added: - `#[schemars(schema_with = "...")]` attribute can now be set on enum variants. - Deriving JsonSchema will now take into account `#[validate(...)]` attributes, compatible with the [validator](https://github.com/Keats/validator) crate (https://github.com/GREsau/schemars/pull/78) diff --git a/docs/1.1-attributes.md b/docs/1.1-attributes.md index 2793c26..32d6bd7 100644 --- a/docs/1.1-attributes.md +++ b/docs/1.1-attributes.md @@ -164,8 +164,6 @@ Serde docs: [container](https://serde.rs/container-attrs.html#transparent) ## Supported Validator Attributes -*These attributes will be processed in Schemars v0.8.4* -

diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index 6fe3121..af7059e 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.3" +version = "0.8.4" authors = ["Graham Esau "] edition = "2018" license = "MIT" @@ -13,7 +13,7 @@ categories = ["encoding"] build = "build.rs" [dependencies] -schemars_derive = { version = "=0.8.3", optional = true, path = "../schemars_derive" } +schemars_derive = { version = "=0.8.4", 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 0535f1d..d92827e 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.3" +version = "0.8.4" authors = ["Graham Esau "] edition = "2018" license = "MIT"