From 7bcd200a211136c94f05e4d485a3fb67ad167c70 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Sat, 10 Aug 2024 13:40:05 +0100 Subject: [PATCH] v1.0.0-alpha.3 --- Cargo.lock | 4 ++-- README.md | 2 +- docs/4-features.md | 2 +- schemars/Cargo.toml | 4 ++-- schemars_derive/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f87862b..e8be8039 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -303,7 +303,7 @@ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "schemars" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "arrayvec", "bigdecimal", @@ -329,7 +329,7 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" dependencies = [ "pretty_assertions", "proc-macro2", diff --git a/README.md b/README.md index 9634342f..18c6d4b5 100644 --- a/README.md +++ b/README.md @@ -278,5 +278,5 @@ For example, to implement `JsonSchema` on types from `chrono`, enable it as a fe ```toml [dependencies] -schemars = { version = "1.0.0-alpha.2", features = ["chrono04"] } +schemars = { version = "1.0.0-alpha.3", features = ["chrono04"] } ``` diff --git a/docs/4-features.md b/docs/4-features.md index eb51bdfe..6c3e8717 100644 --- a/docs/4-features.md +++ b/docs/4-features.md @@ -30,5 +30,5 @@ For example, to implement `JsonSchema` on types from `chrono`, enable it as a fe ```toml [dependencies] -schemars = { version = "1.0.0-alpha.2", features = ["chrono04"] } +schemars = { version = "1.0.0-alpha.3", features = ["chrono04"] } ``` diff --git a/schemars/Cargo.toml b/schemars/Cargo.toml index c1b0a940..055c0102 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 = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Graham Esau "] edition = "2021" license = "MIT" @@ -14,7 +14,7 @@ build = "build.rs" rust-version = "1.60" [dependencies] -schemars_derive = { version = "=1.0.0-alpha.2", optional = true, path = "../schemars_derive" } +schemars_derive = { version = "=1.0.0-alpha.3", optional = true, path = "../schemars_derive" } serde = "1.0" serde_json = "1.0.25" dyn-clone = "1.0" diff --git a/schemars_derive/Cargo.toml b/schemars_derive/Cargo.toml index 8f3a7753..2c1b3984 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 = "1.0.0-alpha.2" +version = "1.0.0-alpha.3" authors = ["Graham Esau "] edition = "2021" license = "MIT"