From 819e26aba1bdf613b4e1c531ae99a871afaa23b3 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 2 Nov 2022 18:33:08 +0000
Subject: [PATCH] Upgrade `chrono-tz` crate to 0.8 version (#1119)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <tyranron@gmail.com>
---
 juniper/CHANGELOG.md | 4 ++--
 juniper/Cargo.toml   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/juniper/CHANGELOG.md b/juniper/CHANGELOG.md
index c771504a..fa547fdd 100644
--- a/juniper/CHANGELOG.md
+++ b/juniper/CHANGELOG.md
@@ -22,7 +22,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
 - Renamed `rename = "<policy>"` attribute argument to `rename_all = "<policy>"` (following `serde` style). ([#971])
 - Upgraded [`bson` crate] integration to [2.0 version](https://github.com/mongodb/bson-rust/releases/tag/v2.0.0). ([#979])
 - Upgraded [`uuid` crate] integration to [1.0 version](https://github.com/uuid-rs/uuid/releases/tag/1.0.0). ([#1057])
-- Upgraded [`chrono-tz` crate] integration to [0.7 version](https://github.com/chronotope/chrono-tz/blob/107e8716d9e065f0fe712b6ef3a4822df4d366f7/CHANGELOG.md#07). ([#1114])
+- Upgraded [`chrono-tz` crate] integration to [0.8 version](https://github.com/chronotope/chrono-tz/blob/ea628d3131b4a659acb42dbac885cfd08a2e5de9/CHANGELOG.md#080). ([#1119])
 - Made `FromInputValue` trait methods fallible to allow post-validation. ([#987])
 - Redesigned `#[graphql_interface]` macro: ([#1009])
     - Removed support for `dyn` attribute argument (interface values as trait objects).
@@ -112,7 +112,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
 [#1081]: /../../pull/1081
 [#1085]: /../../issues/1085
 [#1086]: /../../pull/1086
-[#1114]: /../../pull/1114
+[#1114]: /../../pull/1119
 [ba1ed85b]: /../../commit/ba1ed85b3c3dd77fbae7baf6bc4e693321a94083
 [CVE-2022-31173]: /../../security/advisories/GHSA-4rx6-g5vg-5f3j
 
diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml
index 3a80a5ec..5b4fcabc 100644
--- a/juniper/Cargo.toml
+++ b/juniper/Cargo.toml
@@ -43,7 +43,7 @@ async-trait = "0.1.39"
 bigdecimal = { version = "0.3", optional = true }
 bson = { version = "2.4", features = ["chrono-0_4"], optional = true }
 chrono = { version = "0.4.20", features = ["alloc"], default-features = false, optional = true }
-chrono-tz = { version = "0.7", default-features = false, optional = true }
+chrono-tz = { version = "0.8", default-features = false, optional = true }
 fnv = "1.0.3"
 futures = { version = "0.3.22", features = ["alloc"], default-features = false }
 futures-enum = { version = "0.1.12", default-features = false }