diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4964405f..cc99eb19 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -51,8 +51,6 @@ jobs: profile: minimal override: true components: rustfmt - - name: Install xmllint - run: sudo apt-get install libxml2-utils - name: Install Python uses: actions/setup-python@v2 with: diff --git a/CHANGELOG-rust.md b/CHANGELOG-rust.md index a256bcba..693d11d0 100644 --- a/CHANGELOG-rust.md +++ b/CHANGELOG-rust.md @@ -5,6 +5,9 @@ This changelog tracks the Rust `svdtools` project. See ## [Unreleased] +## [v0.2.5] 2022-07-23 + +* update `svd-rs` crates to 0.14 * `convert`: Add `format_config` option ## [v0.2.4] 2022-05-15 @@ -40,7 +43,8 @@ This changelog tracks the Rust `svdtools` project. See * Initial release with feature-parity with the Python project. -[Unreleased]: https://github.com/stm32-rs/svdtools/compare/v0.2.4...HEAD +[Unreleased]: https://github.com/stm32-rs/svdtools/compare/v0.2.5...HEAD +[v0.2.5]: https://github.com/stm32-rs/svdtools/compare/v0.2.4...v0.2.5 [v0.2.4]: https://github.com/stm32-rs/svdtools/compare/v0.2.3...v0.2.4 [v0.2.3]: https://github.com/stm32-rs/svdtools/compare/v0.2.2...v0.2.3 [v0.2.2]: https://github.com/stm32-rs/svdtools/compare/v0.2.1...v0.2.2 diff --git a/Cargo.toml b/Cargo.toml index 3e26f1b2..f92e7965 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svdtools" -version = "0.2.4" +version = "0.2.5" repository = "https://github.com/stm32-rs/svdtools" description = "Tool for modifying bugs in CMSIS SVD" authors = [ @@ -24,12 +24,12 @@ include = ["/res", "/src", "/tests", "CHANGELOG-rust.md", "README.md", "LICENSE- edition = "2021" [dependencies] -clap = { version = "3.0", features = ["derive"] } +clap = { version = "3.2", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } quick-xml = { version = "0.18", features = ["serialize"] } svd-rs = { version = "0.14.0", features = ["serde", "derive-from"] } svd-parser = { version = "0.14.0", features = ["expand"] } -svd-encoder = "0.14.0" +svd-encoder = "0.14.1" yaml-rust = "0.4" serde_yaml = "0.8.23" serde_json = { version = "1.0", features = ["preserve_order"] }