Skip to content

Commit

Permalink
Fix minimal version of fnv dependency crate
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Jan 2, 2024
1 parent 5d53001 commit 5dec22a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions juniper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion juniper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion juniper/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 5dec22a

Please sign in to comment.