Skip to content

Commit

Permalink
Update to hashbrown 0.11 (MSRV 1.49)
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Jun 3, 2021
1 parent 223d4c0 commit 7819c6d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
include:
- rust: 1.36.0 # MSRV
- rust: 1.49.0 # MSRV
features:
- rust: stable
features: serde
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
matrix:
include:
- rust: 1.36.0
- rust: 1.49.0
target: thumbv6m-none-eabi
- rust: stable
target: thumbv6m-none-eabi
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "indexmap"
edition = "2018"
version = "1.6.2"
version = "1.7.0"
authors = [
"bluss",
"Josh Stone <[email protected]>"
Expand Down Expand Up @@ -37,7 +37,7 @@ serde = { version = "1.0", optional = true, default-features = false }
rayon = { version = "1.2", optional = true }

[dependencies.hashbrown]
version = "0.9.1"
version = "0.11"
default-features = false
features = ["raw"]

Expand Down
10 changes: 8 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ indexmap
.. |docs| image:: https://docs.rs/indexmap/badge.svg
.. _docs: https://docs.rs/indexmap

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

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

Expand Down Expand Up @@ -66,6 +66,12 @@ which is roughly:
Recent Changes
==============

- 1.7.0

- **MSRV**: Rust 1.49 or later is now required.

- The ``hashbrown`` dependency has been updated to version 0.11.

- 1.6.2

- Fixed to match ``std`` behavior, ``OccupiedEntry::key`` now references the
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
//!
//! ### Rust Version
//!
//! This version of indexmap requires Rust 1.36 or later.
//! This version of indexmap requires Rust 1.49 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
Expand Down

0 comments on commit 7819c6d

Please sign in to comment.