Skip to content

Commit

Permalink
Merge pull request #277 from cuviper/release-2.0.2
Browse files Browse the repository at this point in the history
Release 2.0.2 with complete MSRV 1.63
  • Loading branch information
cuviper committed Sep 29, 2023
2 parents fbd129f + 9de727d commit 67e67dd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/ci.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
include:
- rust: 1.64.0 # MSRV
- rust: 1.63.0 # MSRV
features:
- rust: stable
features: arbitrary
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
strategy:
matrix:
include:
- rust: 1.64.0
- rust: 1.63.0
target: thumbv6m-none-eabi
- rust: stable
target: thumbv6m-none-eabi
Expand Down Expand Up @@ -103,18 +103,10 @@ jobs:
toolchain: nightly
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.64.0 # MSRV
toolchain: 1.63.0 # MSRV
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack
- run: cargo +nightly hack generate-lockfile --remove-dev-deps -Z direct-minimal-versions
- name: Build
run: cargo build --verbose --all-features

# See hashbrown#457: it can actually work with 1.63.0
relaxed-msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.63.0
- run: cargo test --verbose --ignore-rust-version
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "indexmap"
edition = "2021"
version = "2.0.1"
version = "2.0.2"
documentation = "https://docs.rs/indexmap/"
repository = "https://github.com/bluss/indexmap"
license = "Apache-2.0 OR MIT"
Expand All @@ -26,7 +26,7 @@ rayon = { version = "1.5.3", optional = true }
rustc-rayon = { package = "rustc-rayon", version = "0.5", optional = true }

[dependencies.hashbrown]
version = "0.14"
version = "0.14.1"
default-features = false
features = ["raw"]

Expand Down
5 changes: 5 additions & 0 deletions RELEASES.md
@@ -1,3 +1,8 @@
- 2.0.2

- The `hashbrown` dependency has been updated to version 0.14.1 to
complete the support for Rust 1.63.

- 2.0.1

- **MSRV**: Rust 1.63.0 is now supported as well, pending publication of
Expand Down

0 comments on commit 67e67dd

Please sign in to comment.