fix: MSRV is now 1.70.0 (#593)

This commit is contained in:
a-kenji 2023-10-25 09:44:36 +00:00 committed by GitHub
parent c597b87f72
commit a2f2bd5df5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -96,7 +96,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ] os: [ ubuntu-latest, windows-latest, macos-latest ]
toolchain: [ "1.67.0", "stable" ] toolchain: [ "1.70.0", "stable" ]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- name: Checkout - name: Checkout
@ -135,7 +135,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ] os: [ ubuntu-latest, windows-latest, macos-latest ]
toolchain: [ "1.67.0", "stable" ] toolchain: [ "1.70.0", "stable" ]
backend: [ crossterm, termion, termwiz ] backend: [ crossterm, termion, termwiz ]
exclude: exclude:
# termion is not supported on windows # termion is not supported on windows

View file

@ -11,6 +11,7 @@ github with a [breaking change] label.
This is a quick summary of the sections below: This is a quick summary of the sections below:
- [v0.24.0](#v0240) - [v0.24.0](#v0240)
- MSRV is now 1.70.0
- `ScrollbarState`: `position`, `content_length`, and `viewport_content_length` are now `usize` - `ScrollbarState`: `position`, `content_length`, and `viewport_content_length` are now `usize`
- `BorderType`: `line_symbols` is now `border_symbols` and returns `symbols::border::set` - `BorderType`: `line_symbols` is now `border_symbols` and returns `symbols::border::set`
- `Frame<'a, B: Backend>` is now `Frame<'a>` - `Frame<'a, B: Backend>` is now `Frame<'a>`

View file

@ -18,7 +18,7 @@ exclude = [
] ]
autoexamples = true autoexamples = true
edition = "2021" edition = "2021"
rust-version = "1.67.0" rust-version = "1.70.0"
[badges] [badges]