From 5dec22ad7bd3f0af8cdf8527f88af24a1ae239d6 Mon Sep 17 00:00:00 2001 From: tyranron <tyranron@gmail.com> Date: Tue, 2 Jan 2024 15:26:13 +0100 Subject: [PATCH] Fix minimal version of `fnv` dependency crate --- juniper/CHANGELOG.md | 4 ++++ juniper/Cargo.toml | 2 +- juniper/src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/juniper/CHANGELOG.md b/juniper/CHANGELOG.md index 6eba2459..183f98e2 100644 --- a/juniper/CHANGELOG.md +++ b/juniper/CHANGELOG.md @@ -1,3 +1,7 @@ +# [[0.15.12] 2024-01-??](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.12) + +- Fix minimal version of `fnv` dependency crate. + # [[0.15.11] 2023-01-31](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.11) - Fix string mangling on dynamic schema by upgrading `smartstring` to `1.0` version. ([#1142](https://github.com/graphql-rust/juniper/issues/1142), [#1143](https://github.com/graphql-rust/juniper/issues/1143)) diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml index 56dfa1d7..d6276cac 100644 --- a/juniper/Cargo.toml +++ b/juniper/Cargo.toml @@ -39,7 +39,7 @@ async-trait = "0.1.39" bson = { version = "1.0", optional = true } chrono = { version = "0.4", default-features = false, optional = true } chrono-tz = { version = "0.5", default-features = false, optional = true } -fnv = "1.0.3" +fnv = "1.0.5" futures = { version = "0.3.1", features = ["alloc"], default-features = false } futures-enum = { version = "0.1.12", default-features = false } graphql-parser = { version = "0.3", optional = true } diff --git a/juniper/src/lib.rs b/juniper/src/lib.rs index 29b750a4..1a953a8b 100644 --- a/juniper/src/lib.rs +++ b/juniper/src/lib.rs @@ -90,7 +90,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected. [bson]: https://crates.io/crates/bson */ -#![doc(html_root_url = "https://docs.rs/juniper/0.15.11")] +#![doc(html_root_url = "https://docs.rs/juniper/0.15.12")] #![warn(missing_docs)] // Required for using `juniper_codegen` macros inside this crate to resolve absolute `::juniper`