diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c507be0..b7d6cd8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - toolchain: [ "1.67.0", "stable" ] + toolchain: [ "1.70.0", "stable" ] runs-on: ${{ matrix.os }} steps: - name: Checkout @@ -135,7 +135,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - toolchain: [ "1.67.0", "stable" ] + toolchain: [ "1.70.0", "stable" ] backend: [ crossterm, termion, termwiz ] exclude: # termion is not supported on windows diff --git a/BREAKING-CHANGES.md b/BREAKING-CHANGES.md index 0b7d7bac..eb5e916a 100644 --- a/BREAKING-CHANGES.md +++ b/BREAKING-CHANGES.md @@ -11,6 +11,7 @@ github with a [breaking change] label. This is a quick summary of the sections below: - [v0.24.0](#v0240) + - MSRV is now 1.70.0 - `ScrollbarState`: `position`, `content_length`, and `viewport_content_length` are now `usize` - `BorderType`: `line_symbols` is now `border_symbols` and returns `symbols::border::set` - `Frame<'a, B: Backend>` is now `Frame<'a>` diff --git a/Cargo.toml b/Cargo.toml index e6bc077f..7c982037 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ exclude = [ ] autoexamples = true edition = "2021" -rust-version = "1.67.0" +rust-version = "1.70.0" [badges]