Merge pull request #233 from cuviper/release-1.9.1

Release 1.9.1 for MSRV 1.56.0
This commit is contained in:
Josh Stone
2022-06-21 11:03:10 -07:00
committed by GitHub
4 changed files with 10 additions and 4 deletions
+2 -2
View File
@@ -1,14 +1,14 @@
[package]
name = "indexmap"
edition = "2021"
version = "1.9.0"
version = "1.9.1"
documentation = "https://docs.rs/indexmap/"
repository = "https://github.com/bluss/indexmap"
license = "Apache-2.0 OR MIT"
description = "A hash table with consistent order and fast iteration."
keywords = ["hashmap", "no_std"]
categories = ["data-structures", "no-std"]
rust-version = "1.56.1"
rust-version = "1.56"
[lib]
bench = false
+1 -1
View File
@@ -3,7 +3,7 @@
[![build status](https://github.com/bluss/indexmap/workflows/Continuous%20integration/badge.svg?branch=master)](https://github.com/bluss/indexmap/actions)
[![crates.io](https://img.shields.io/crates/v/indexmap.svg)](https://crates.io/crates/indexmap)
[![docs](https://docs.rs/indexmap/badge.svg)](https://docs.rs/indexmap)
[![rustc](https://img.shields.io/badge/rust-1.56.1%2B-orange.svg)](https://img.shields.io/badge/rust-1.56.1%2B-orange.svg)
[![rustc](https://img.shields.io/badge/rust-1.56%2B-orange.svg)](https://img.shields.io/badge/rust-1.56%2B-orange.svg)
A pure-Rust hash table which preserves (in a limited sense) insertion order.
+6
View File
@@ -1,3 +1,9 @@
- 1.9.1
- The MSRV now allows Rust 1.56.0 as well. However, currently `hashbrown`
0.12.1 requires 1.56.1, so users on 1.56.0 should downgrade that to 0.12.0
until there is a later published version relaxing its requirement.
- 1.9.0
- **MSRV**: Rust 1.56.1 or later is now required.
+1 -1
View File
@@ -53,7 +53,7 @@
//!
//! ### Rust Version
//!
//! This version of indexmap requires Rust 1.56.1 or later.
//! This version of indexmap requires Rust 1.56 or later.
//!
//! The indexmap 1.x release series will use a carefully considered version
//! upgrade policy, where in a later 1.x version, we will raise the minimum