Skip to content

Commit 8a571c6

Browse files
committed
Bump MSRV to 1.56.1, matching hashbrown as of 0.12.1
1 parent eac27f1 commit 8a571c6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
include:
19-
- rust: 1.56.0 # MSRV
19+
- rust: 1.56.1 # MSRV
2020
features:
2121
- rust: stable
2222
features: serde
@@ -57,7 +57,7 @@ jobs:
5757
strategy:
5858
matrix:
5959
include:
60-
- rust: 1.56.0
60+
- rust: 1.56.1
6161
target: thumbv6m-none-eabi
6262
- rust: stable
6363
target: thumbv6m-none-eabi

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0 OR MIT"
99
description = "A hash table with consistent order and fast iteration."
1010
keywords = ["hashmap", "no_std"]
1111
categories = ["data-structures", "no-std"]
12-
rust-version = "1.56"
12+
rust-version = "1.56.1"
1313

1414
[lib]
1515
bench = false

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![build status](https://github.com/bluss/indexmap/workflows/Continuous%20integration/badge.svg?branch=master)](https://github.com/bluss/indexmap/actions)
44
[![crates.io](https://img.shields.io/crates/v/indexmap.svg)](https://crates.io/crates/indexmap)
55
[![docs](https://docs.rs/indexmap/badge.svg)](https://docs.rs/indexmap)
6-
[![rustc](https://img.shields.io/badge/rust-1.56%2B-orange.svg)](https://img.shields.io/badge/rust-1.56%2B-orange.svg)
6+
[![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)
77

88
A pure-Rust hash table which preserves (in a limited sense) insertion order.
99

RELEASES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
- 2.0.0 (pending)
22

3-
- **MSRV**: Rust 1.56 or later is now required.
3+
- **MSRV**: Rust 1.56.1 or later is now required.
44

55
- The `hashbrown` dependency has been updated to version 0.12.
66

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//!
5454
//! ### Rust Version
5555
//!
56-
//! This version of indexmap requires Rust 1.56 or later.
56+
//! This version of indexmap requires Rust 1.56.1 or later.
5757
//!
5858
//! The indexmap 2.x release series will use a carefully considered version
5959
//! upgrade policy, where in a later 2.x version, we will raise the minimum

0 commit comments

Comments
 (0)