From 19b9bef39531b2530e28e7bd5c63f8857065155c Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Sun, 17 May 2020 13:46:09 +0100 Subject: [PATCH] v0.7.5 --- CHANGELOG.md | 3 ++- schemars/Cargo.toml | 4 ++-- schemars_derive/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 739b836c..7f051fda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog -## In-dev - version TBC + +## [0.7.5] - 2020-05-17 ### Added: - Setting `#[deprecated]` attribute will now cause generated schemas to have the `deprecated` property set to `true` - Respect `#[serde(transparent)]` attribute (https://github.com/GREsau/schemars/issues/17) diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index 37658200..0a04e39e 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.7.4" +version = "0.7.5" authors = ["Graham Esau "] edition = "2018" license = "MIT" @@ -13,7 +13,7 @@ categories = ["encoding"] build = "build.rs" [dependencies] -schemars_derive = { version = "=0.7.4", optional = true, path = "../schemars_derive" } +schemars_derive = { version = "=0.7.5", optional = true, path = "../schemars_derive" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/schemars_derive/Cargo.toml b/schemars_derive/Cargo.toml index b8399fcb..1bafe225 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.7.4" +version = "0.7.5" authors = ["Graham Esau "] edition = "2018" license = "MIT"