Skip to content

Commit 8e843a9

Browse files
authored
Merge pull request #181 from cuviper/hashbrown-0.11
Update to hashbrown 0.11 (MSRV 1.49)
2 parents 223d4c0 + 7819c6d commit 8e843a9

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.github/workflows/ci.yml

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "indexmap"
33
edition = "2018"
4-
version = "1.6.2"
4+
version = "1.7.0"
55
authors = [
66
"bluss",
77
"Josh Stone <[email protected]>"
@@ -37,7 +37,7 @@ serde = { version = "1.0", optional = true, default-features = false }
3737
rayon = { version = "1.2", optional = true }
3838

3939
[dependencies.hashbrown]
40-
version = "0.9.1"
40+
version = "0.11"
4141
default-features = false
4242
features = ["raw"]
4343

README.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ indexmap
1212
.. |docs| image:: https://docs.rs/indexmap/badge.svg
1313
.. _docs: https://docs.rs/indexmap
1414

15-
.. |rustc| image:: https://img.shields.io/badge/rust-1.36%2B-orange.svg
16-
.. _rustc: https://img.shields.io/badge/rust-1.36%2B-orange.svg
15+
.. |rustc| image:: https://img.shields.io/badge/rust-1.49%2B-orange.svg
16+
.. _rustc: https://img.shields.io/badge/rust-1.49%2B-orange.svg
1717

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

@@ -66,6 +66,12 @@ which is roughly:
6666
Recent Changes
6767
==============
6868

69+
- 1.7.0
70+
71+
- **MSRV**: Rust 1.49 or later is now required.
72+
73+
- The ``hashbrown`` dependency has been updated to version 0.11.
74+
6975
- 1.6.2
7076

7177
- Fixed to match ``std`` behavior, ``OccupiedEntry::key`` now references the

src/lib.rs

Lines changed: 1 addition & 1 deletion
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.36 or later.
56+
//! This version of indexmap requires Rust 1.49 or later.
5757
//!
5858
//! The indexmap 1.x release series will use a carefully considered version
5959
//! upgrade policy, where in a later 1.x version, we will raise the minimum

0 commit comments

Comments
 (0)