From 2cedac10bc66f5d5f9db74bd16ad1a10c5c6a3bc Mon Sep 17 00:00:00 2001 From: Adam Reichold Date: Tue, 1 Mar 2022 10:11:41 +0100 Subject: [PATCH] Extend optional dependency supported versions to include 0.12. --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe15defeefd..8988b6f6b55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ PyO3 versions, please see the [migration guide](https://pyo3.rs/latest/migration 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). +## [unreleased] + +### Packaging + +- Extend `hashbrown` optional dependency supported versions to include 0.12. [#????](https://github.com/PyO3/pyo3/pull/????) + ## [0.16.0] - 2022-02-27 ### Packaging diff --git a/Cargo.toml b/Cargo.toml index 6740dd5f3dd..27721fb0b3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ inventory = { version = "0.2.0", optional = true } # crate integrations that can be added using the eponymous features anyhow = { version = "1.0", optional = true } eyre = { version = ">= 0.4, < 0.7", optional = true } -hashbrown = { version = ">= 0.9, < 0.12", optional = true } +hashbrown = { version = ">= 0.9, < 0.13", optional = true } indexmap = { version = ">= 1.6, < 1.8", optional = true } num-bigint = { version = "0.4", optional = true } num-complex = { version = ">= 0.2, < 0.5", optional = true }