Skip to content

Commit 6285a7a

Browse files
bors[bot]burrbull
andauthored
Merge #115
115: release rust svdtools-0.2.5 r=adamgreig a=burrbull Co-authored-by: Andrey Zgarbul <[email protected]>
2 parents b14cf64 + b0d3e27 commit 6285a7a

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/ci.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ jobs:
5151
profile: minimal
5252
override: true
5353
components: rustfmt
54-
- name: Install xmllint
55-
run: sudo apt-get install libxml2-utils
5654
- name: Install Python
5755
uses: actions/setup-python@v2
5856
with:

CHANGELOG-rust.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ This changelog tracks the Rust `svdtools` project. See
55

66
## [Unreleased]
77

8+
## [v0.2.5] 2022-07-23
9+
10+
* update `svd-rs` crates to 0.14
811
* `convert`: Add `format_config` option
912

1013
## [v0.2.4] 2022-05-15
@@ -40,7 +43,8 @@ This changelog tracks the Rust `svdtools` project. See
4043

4144
* Initial release with feature-parity with the Python project.
4245

43-
[Unreleased]: https://github.com/stm32-rs/svdtools/compare/v0.2.4...HEAD
46+
[Unreleased]: https://github.com/stm32-rs/svdtools/compare/v0.2.5...HEAD
47+
[v0.2.5]: https://github.com/stm32-rs/svdtools/compare/v0.2.4...v0.2.5
4448
[v0.2.4]: https://github.com/stm32-rs/svdtools/compare/v0.2.3...v0.2.4
4549
[v0.2.3]: https://github.com/stm32-rs/svdtools/compare/v0.2.2...v0.2.3
4650
[v0.2.2]: https://github.com/stm32-rs/svdtools/compare/v0.2.1...v0.2.2

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svdtools"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
repository = "https://github.com/stm32-rs/svdtools"
55
description = "Tool for modifying bugs in CMSIS SVD"
66
authors = [
@@ -24,12 +24,12 @@ include = ["/res", "/src", "/tests", "CHANGELOG-rust.md", "README.md", "LICENSE-
2424
edition = "2021"
2525

2626
[dependencies]
27-
clap = { version = "3.0", features = ["derive"] }
27+
clap = { version = "3.2", features = ["derive"] }
2828
serde = { version = "1.0", features = ["derive"] }
2929
quick-xml = { version = "0.18", features = ["serialize"] }
3030
svd-rs = { version = "0.14.0", features = ["serde", "derive-from"] }
3131
svd-parser = { version = "0.14.0", features = ["expand"] }
32-
svd-encoder = "0.14.0"
32+
svd-encoder = "0.14.1"
3333
yaml-rust = "0.4"
3434
serde_yaml = "0.8.23"
3535
serde_json = { version = "1.0", features = ["preserve_order"] }

0 commit comments

Comments
 (0)