diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29694b42..13fca33b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,19 +13,19 @@ jobs: include: - os: macos-latest target: x86_64-apple-darwin - rust: 1.59.0 + rust: 1.63.0 - os: ubuntu-latest target: x86_64-unknown-linux-gnu - rust: 1.59.0 + rust: 1.63.0 - os: ubuntu-latest target: i686-unknown-linux-gnu - rust: 1.59.0 + rust: 1.63.0 - os: windows-latest target: i686-pc-windows-msvc - rust: 1.59.0 + rust: 1.63.0 - os: windows-latest target: x86_64-pc-windows-msvc - rust: 1.59.0 + rust: 1.63.0 - os: ubuntu-latest target: x86_64-unknown-linux-gnu rust: stable diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b2e7cfb..0dd66ad2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ ### Breaking -* Updated MSRV to `1.59.0` +* Updated MSRV to `1.63.0` due to multiple dependencies on different platforms: `rustix`, `tempfile`,`linux-raw-sys` * Removed deprecated `Confirm::with_text` * Prompt builder functions now take `mut self` instead of `&mut self` * Prompt builder functions now return `Self` instead of `&mut Self` diff --git a/Cargo.toml b/Cargo.toml index 86d4a9ce..8f7fc56d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "dialoguer" description = "A command line prompting library." version = "0.10.4" edition = "2021" -rust-version = "1.59.0" +rust-version = "1.63.0" authors = [ "Armin Ronacher ", "Pavan Kumar Sunkara "