Skip to content

Commit 7242531

Browse files
authored
Merge pull request #88 from matklad/matklad/msrv
bump MSRV
2 parents 7dc60e2 + 9b9b8ab commit 7242531

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,8 @@ jobs:
2424
- uses: actions/checkout@v2
2525
with:
2626
fetch-depth: 0
27-
- uses: actions-rs/toolchain@v1
28-
with:
29-
toolchain: 1.59.0 # Check _only_ MSRV for simplicity.
30-
profile: minimal
31-
components: rustfmt
32-
override: true
27+
- run: rustup default 1.63.0 # Check _only_ MSRV for simplicity.
28+
- run: rustup component add rustfmt
3329
- run: cargo run --example ci
3430

3531
publish:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
- MSRV is raised to 1.63.0
6+
37
## 0.2.6
48

59
- Implement `Clone` for `Shell`.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
repository = "https://github.com/matklad/xshell"
88
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
99
edition = "2021"
10-
rust-version = "1.59"
10+
rust-version = "1.63"
1111

1212
exclude = [".github/", "bors.toml", "rustfmt.toml", "cbench", "mock_bin/"]
1313

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
//!
225225
//! # Maintenance
226226
//!
227-
//! Minimum Supported Rust Version: 1.59.0. MSRV bump is not considered semver
227+
//! Minimum Supported Rust Version: 1.63.0. MSRV bump is not considered semver
228228
//! breaking. MSRV is updated conservatively.
229229
//!
230230
//! The crate isn't comprehensive yet, but this is a goal. You are hereby

0 commit comments

Comments
 (0)