Skip to content

Commit

Permalink
Bump MSRV to 1.66
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Dec 16, 2024
1 parent 09be64b commit 9ae69d5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ on:
branches: [master]
jobs:
build-msrv:
name: Build on MSRV (1.56)
name: Build on MSRV (1.66)
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
rust: 1.56.0
rust: 1.66.0
- os: windows-latest
target: i686-pc-windows-msvc
rust: 1.56.0
rust: 1.66.0
runs-on: ${{ matrix.os }}
steps:
- name: Install rust
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Copy MSRV Lock
run: make msrv-lock
- name: Build
env:
env:
CARGO_BUILD_TARGET: ${{ matrix.target }}
run: make check

Expand All @@ -46,16 +46,16 @@ jobs:
rust: stable
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
rust: 1.56.0
rust: 1.66.0
- os: ubuntu-latest
target: i686-unknown-linux-gnu
rust: 1.56.0
rust: 1.66.0
- os: windows-latest
target: i686-pc-windows-msvc
rust: 1.56.0
rust: 1.66.0
- os: windows-latest
target: x86_64-pc-windows-msvc
rust: 1.56.0
rust: 1.66.0
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
rust: stable
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Copy MSRV Lock
run: make msrv-lock
- name: Test
env:
env:
CARGO_BUILD_TARGET: ${{ matrix.target }}
run: make test
wasm-check:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://github.com/console-rs/console"
repository = "https://github.com/console-rs/console"
documentation = "https://docs.rs/console"
readme = "README.md"
rust-version = "1.56.0"
rust-version = "1.66"

[features]
default = ["unicode-width", "ansi-parsing"]
Expand Down

0 comments on commit 9ae69d5

Please sign in to comment.