Skip to content

Commit

Permalink
bump msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Bloom committed Feb 23, 2025
1 parent 30d4c15 commit 52b3b18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

name: Continuous integration

Expand All @@ -17,12 +17,12 @@ jobs:
strategy:
matrix:
include:
- rust: 1.51.0 # MSRV
- rust: 1.83.0 # MSRV
features: serde
experimental: false
# doctest of `ArrayVec::spare_capacity_mut` has MSRV 1.55
test-args: --skip spare_capacity_mut
- rust: 1.70.0
- rust: 1.84.0
features: serde
experimental: false
- rust: stable
Expand All @@ -42,7 +42,7 @@ jobs:
with:
toolchain: ${{ matrix.rust }}
- name: Pin versions for MSRV
if: "${{ matrix.rust == '1.51.0' }}"
if: "${{ matrix.rust == '1.83.0' }}"
run: |
cargo update -p serde_test --precise 1.0.163
cargo update -p serde --precise 1.0.69
Expand Down Expand Up @@ -80,7 +80,6 @@ jobs:
run: |
cargo rustc "--target=${{ matrix.target }}" --no-default-features --features "${{ matrix.features }}"
miri:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//!
//! ## Rust Version
//!
//! This version of arrayvec requires Rust 1.51 or later.
//! This version of arrayvec requires Rust 1.83 or later.
//!
#![doc(html_root_url="https://docs.rs/arrayvec/0.7/")]
#![cfg_attr(not(feature="std"), no_std)]
Expand Down

0 comments on commit 52b3b18

Please sign in to comment.