Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0.2 with complete MSRV 1.63 #277

Merged
merged 1 commit into from Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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