diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 223f1fc00..1cafcdae8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,7 +2,7 @@ name: CI env: SVDTOOLS_VERSION: 0.2.3 - SVD2RUST_VERSION: 0.24.0 + SVD2RUST_VERSION: 0.24.1 FORM_VERSION: 0.8.0 on: diff --git a/.github/workflows/nightlies.yaml b/.github/workflows/nightlies.yaml index b985057bc..59bf3576c 100644 --- a/.github/workflows/nightlies.yaml +++ b/.github/workflows/nightlies.yaml @@ -2,7 +2,7 @@ name: build nightlies env: SVDTOOLS_VERSION: 0.2.3 - SVD2RUST_VERSION: 0.24.0 + SVD2RUST_VERSION: 0.24.1 FORM_VERSION: 0.8.0 on: diff --git a/CHANGELOG.md b/CHANGELOG.md index fe543779b..86b741c3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +* Updated to svd2rust 0.24.1 + ## [v0.15.0] 2022-07-04 Common changes: diff --git a/README.md b/README.md index a3c5db307..c55944cba 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ contain the latest patches and updates. ## Generating Device Crates / Building Locally -* Install `svd2rust`: `cargo install --version 0.24.0 svd2rust` +* Install `svd2rust`: `cargo install --version 0.24.1 svd2rust` * Install `form`: `cargo install form` * Install rustfmt: `rustup component add rustfmt` * Install svdtools: `pip install --user svdtools` diff --git a/scripts/makecrates.py b/scripts/makecrates.py index 28de857c7..faa05972e 100644 --- a/scripts/makecrates.py +++ b/scripts/makecrates.py @@ -17,7 +17,7 @@ import yaml VERSION = "0.15.0" -SVD2RUST_VERSION = "0.24.0" +SVD2RUST_VERSION = "0.24.1" CRATE_DOC_FEATURES = { "stm32f0": ["rt", "stm32f0x0", "stm32f0x1", "stm32f0x2", "stm32f0x8"],