mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-21 20:23:11 +00:00
fix: MSRV is now 1.70.0
(#593)
This commit is contained in:
parent
c597b87f72
commit
a2f2bd5df5
3 changed files with 4 additions and 3 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -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
|
||||||
|
|
|
@ -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>`
|
||||||
|
|
|
@ -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]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue