Skip to content

Commit 5dec22a

Browse files
committed
Fix minimal version of fnv dependency crate
1 parent 5d53001 commit 5dec22a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

juniper/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# [[0.15.12] 2024-01-??](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.12)
2+
3+
- Fix minimal version of `fnv` dependency crate.
4+
15
# [[0.15.11] 2023-01-31](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.11)
26

37
- 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))

juniper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async-trait = "0.1.39"
3939
bson = { version = "1.0", optional = true }
4040
chrono = { version = "0.4", default-features = false, optional = true }
4141
chrono-tz = { version = "0.5", default-features = false, optional = true }
42-
fnv = "1.0.3"
42+
fnv = "1.0.5"
4343
futures = { version = "0.3.1", features = ["alloc"], default-features = false }
4444
futures-enum = { version = "0.1.12", default-features = false }
4545
graphql-parser = { version = "0.3", optional = true }

juniper/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
9090
[bson]: https://crates.io/crates/bson
9191
9292
*/
93-
#![doc(html_root_url = "https://docs.rs/juniper/0.15.11")]
93+
#![doc(html_root_url = "https://docs.rs/juniper/0.15.12")]
9494
#![warn(missing_docs)]
9595

9696
// Required for using `juniper_codegen` macros inside this crate to resolve absolute `::juniper`

0 commit comments

Comments
 (0)