From 16f28e0296d1b9bac16ebd81b0a489a539440c77 Mon Sep 17 00:00:00 2001 From: Jesse Braham Date: Wed, 18 Oct 2023 11:44:14 -0700 Subject: [PATCH] Bump MSRV to 1.67.0 --- .github/workflows/ci.yml | 2 +- README.md | 4 ++-- esp32/Cargo.toml | 2 +- esp32c2/Cargo.toml | 2 +- esp32c3/Cargo.toml | 2 +- esp32c6-lp/Cargo.toml | 2 +- esp32c6/Cargo.toml | 2 +- esp32h2/Cargo.toml | 2 +- esp32s2-ulp/Cargo.toml | 2 +- esp32s2/Cargo.toml | 2 +- esp32s3-ulp/Cargo.toml | 2 +- esp32s3/Cargo.toml | 2 +- esp8266/Cargo.toml | 2 +- 13 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56c8f811f3..671932e38a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: env: CARGO_TERM_COLOR: always GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - MSRV: "1.65.0" + MSRV: "1.67.0" # Cancel any currently running workflows from the same PR, branch, or # tag when a new workflow is triggered. diff --git a/README.md b/README.md index e2dee8201b..6772c251de 100644 --- a/README.md +++ b/README.md @@ -92,8 +92,8 @@ Prior to opening a pull request, we ask that you please: The **M**inimum **S**upported **R**ust **V**ersions are: -- `1.65.0` for RISC-V devices (**ESP32-C2/C3/C6**, **ESP32-H2**, **ESP32-S2/S3 RISC-V ULP coprocessors**) -- `1.65.0` for Xtensa devices (**ESP32**, **ESP32-S2/S3**, **ESP8266**) +- `1.67.0` for RISC-V devices (**ESP32-C2/C3/C6**, **ESP32-H2**, **ESP32-S2/S3 RISC-V ULP coprocessors**) +- `1.67.0` for Xtensa devices (**ESP32**, **ESP32-S2/S3**, **ESP8266**) Note that targeting the Xtensa ISA currently requires the use of the [esp-rs/rust] compiler fork, which can be installed using [esp-rs/espup]. diff --git a/esp32/Cargo.toml b/esp32/Cargo.toml index 73809df95b..ffe25569ed 100644 --- a/esp32/Cargo.toml +++ b/esp32/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32" version = "0.26.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32c2/Cargo.toml b/esp32c2/Cargo.toml index 8926fa80d8..ade8a8b5d8 100644 --- a/esp32c2/Cargo.toml +++ b/esp32c2/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32c2" version = "0.14.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-C2" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32c3/Cargo.toml b/esp32c3/Cargo.toml index fa1bd05a7a..517ffd5f0e 100644 --- a/esp32c3/Cargo.toml +++ b/esp32c3/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32c3" version = "0.17.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-C3" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32c6-lp/Cargo.toml b/esp32c6-lp/Cargo.toml index eadb110890..589a414a5a 100644 --- a/esp32c6-lp/Cargo.toml +++ b/esp32c6-lp/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32c6-lp" version = "0.1.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-C6's LP coprocessor" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32c6/Cargo.toml b/esp32c6/Cargo.toml index e0fca87caf..e9afab2b21 100644 --- a/esp32c6/Cargo.toml +++ b/esp32c6/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32c6" version = "0.7.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-C6" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32h2/Cargo.toml b/esp32h2/Cargo.toml index 78053e8118..ae87403d2d 100644 --- a/esp32h2/Cargo.toml +++ b/esp32h2/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32h2" version = "0.3.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-H2" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32s2-ulp/Cargo.toml b/esp32s2-ulp/Cargo.toml index 858c97fa4d..cd0da9f8c8 100644 --- a/esp32s2-ulp/Cargo.toml +++ b/esp32s2-ulp/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32s2-ulp" version = "0.1.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-S2's RISC-V ULP coprocessor" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32s2/Cargo.toml b/esp32s2/Cargo.toml index 460a03cb79..ee7beba62f 100644 --- a/esp32s2/Cargo.toml +++ b/esp32s2/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32s2" version = "0.17.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-S2" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32s3-ulp/Cargo.toml b/esp32s3-ulp/Cargo.toml index 9f3c695d23..d0cd6fd114 100644 --- a/esp32s3-ulp/Cargo.toml +++ b/esp32s3-ulp/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32s3-ulp" version = "0.1.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-S3's RISC-V ULP coprocessor" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp32s3/Cargo.toml b/esp32s3/Cargo.toml index 130cb303db..bce31247c3 100644 --- a/esp32s3/Cargo.toml +++ b/esp32s3/Cargo.toml @@ -2,7 +2,7 @@ name = "esp32s3" version = "0.21.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP32-S3" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0" diff --git a/esp8266/Cargo.toml b/esp8266/Cargo.toml index b429d082e8..44dfe0daa9 100644 --- a/esp8266/Cargo.toml +++ b/esp8266/Cargo.toml @@ -2,7 +2,7 @@ name = "esp8266" version = "0.7.0" edition = "2021" -rust-version = "1.65" +rust-version = "1.67" description = "Peripheral access crate for the ESP8266" repository = "https://github.com/esp-rs/esp-pacs" license = "MIT OR Apache-2.0"