Skip to content

Commit

Permalink
Bump MSRV to 1.71
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Dec 26, 2023
1 parent 8fc29c0 commit 490c2ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
toolchain: ["stable", "1.70", "beta", "nightly"]
toolchain: ["stable", "1.71", "beta", "nightly"]
features: ["--features \"\"", "--all-features", "--no-default-features"]
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add store testing utility functions for unified store testing
- Make various `Array` methods with `parallel` parameter `pub`
- Remove `#[doc(hidden)]` from various functions which are `unsafe` and primarily intended for internal use
- **Breaking** Bump minimum supported rust version (MSRV) to `1.71` (13 July, 2023)

### Fixed
- Fixed `MemoryStore::get_partial_values_key` if given an invalid byte range, now returns `InvalidByteRangeError` instead of panicking
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "zarrs"
version = "0.8.0"
authors = ["Lachlan Deakin <[email protected]>"]
edition = "2021"
rust-version = "1.70"
rust-version = "1.71"
description = "A library for the Zarr V3 storage format for multidimensional arrays and metadata"
documentation = "https://docs.rs/zarrs"
repository = "https://github.com/LDeakin/zarrs"
Expand Down

0 comments on commit 490c2ed

Please sign in to comment.