From 30a51c14fe9b3aa1d7043bcbeecab0d48a6c739b Mon Sep 17 00:00:00 2001 From: BratSinot Date: Wed, 19 Jan 2022 14:40:30 +0200 Subject: [PATCH 1/2] Bump hashbrown to 0.12. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 14003d5d..b64ed90a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ fast_chemail = "0.9.6" bson = { version = "2.0.0", optional = true, features = ["chrono-0_4"] } chrono = { version = "0.4.19", optional = true } chrono-tz = { version = "0.5.3", optional = true } -hashbrown = { version = "0.11.2", optional = true } +hashbrown = { version = "0.12.0", optional = true } iso8601-duration = { version = "0.1.0", optional = true } log = { version = "0.4.14", optional = true } secrecy = { version = "0.7.0", optional = true } From d841218fcf92b6c4911efd0603f21a88ba8e37d3 Mon Sep 17 00:00:00 2001 From: BratSinot Date: Wed, 19 Jan 2022 14:43:01 +0200 Subject: [PATCH 2/2] Update changelog. --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5d7818b..51668248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [3.0.23] 2022-1-19 + +- Bump hashbrown from `0.11.2` to `0.12.0`. + ## [3.0.22] 2022-1-11 - Add support `flatten` attribute for `SimpleObject`, `ComplexObject` and `Object` macros. [#533](https://github.com/async-graphql/async-graphql/issues/533)