Skip to content

Commit 52b3b18

Browse files
author
Daniel Bloom
committed
bump msrv
1 parent 30d4c15 commit 52b3b18

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/ci.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
on:
22
push:
3-
branches: [ master ]
3+
branches: [master]
44
pull_request:
5-
branches: [ master ]
5+
branches: [master]
66

77
name: Continuous integration
88

@@ -17,12 +17,12 @@ jobs:
1717
strategy:
1818
matrix:
1919
include:
20-
- rust: 1.51.0 # MSRV
20+
- rust: 1.83.0 # MSRV
2121
features: serde
2222
experimental: false
2323
# doctest of `ArrayVec::spare_capacity_mut` has MSRV 1.55
2424
test-args: --skip spare_capacity_mut
25-
- rust: 1.70.0
25+
- rust: 1.84.0
2626
features: serde
2727
experimental: false
2828
- rust: stable
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
toolchain: ${{ matrix.rust }}
4444
- name: Pin versions for MSRV
45-
if: "${{ matrix.rust == '1.51.0' }}"
45+
if: "${{ matrix.rust == '1.83.0' }}"
4646
run: |
4747
cargo update -p serde_test --precise 1.0.163
4848
cargo update -p serde --precise 1.0.69
@@ -80,7 +80,6 @@ jobs:
8080
run: |
8181
cargo rustc "--target=${{ matrix.target }}" --no-default-features --features "${{ matrix.features }}"
8282
83-
8483
miri:
8584
runs-on: ubuntu-latest
8685
steps:

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//!
1818
//! ## Rust Version
1919
//!
20-
//! This version of arrayvec requires Rust 1.51 or later.
20+
//! This version of arrayvec requires Rust 1.83 or later.
2121
//!
2222
#![doc(html_root_url="https://docs.rs/arrayvec/0.7/")]
2323
#![cfg_attr(not(feature="std"), no_std)]

0 commit comments

Comments
 (0)