Skip to content

Commit 33dd7df

Browse files
bors[bot]burrbull
andauthored
Merge #198
198: Expand & ignore_enums parse options r=Emilgardis a=burrbull cc `@noppej` Co-authored-by: Andrey Zgarbul <zgarbul.andrey@gmail.com> Co-authored-by: Zgarbul Andrey <zgarbul.andrey@gmail.com>
2 parents a00fd4d + 526da72 commit 33dd7df

File tree

6 files changed

+456
-15
lines changed

6 files changed

+456
-15
lines changed

svd-parser/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
## [v0.13.2] - 2022-04-23
11+
12+
- Add `expand` (under `expand` feature) and `ignore_enums` options
13+
1014
## [v0.13.1] - 2022-01-04
1115

1216
- Make `version`, `description`, `width` and `address_unit_bits` on `Device` optional again
@@ -27,7 +31,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2731

2832
Previous versions in common [changelog](../CHANGELOG.md).
2933

30-
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.13.1...HEAD
34+
[Unreleased]: https://github.com/rust-embedded/svd/compare/svd-parser-v0.13.2...HEAD
35+
[v0.13.2]: https://github.com/rust-embedded/svd/compare/svd-rs-v0.13.2...svd-parser-v0.13.2
3136
[v0.13.1]: https://github.com/rust-embedded/svd/compare/v0.13.0...svd-parser-v0.13.1
3237
[v0.13.0]: https://github.com/rust-embedded/svd/compare/v0.12.0...v0.13.0
3338
[v0.12.0]: https://github.com/rust-embedded/svd/compare/v0.11.0...v0.12.0

svd-parser/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,23 @@ license = "MIT OR Apache-2.0"
1010
name = "svd-parser"
1111
repository = "https://github.com/rust-embedded/svd"
1212
edition = "2018"
13-
version = "0.13.1"
13+
version = "0.13.2"
1414
readme = "README.md"
1515

1616
[features]
1717
derive-from = ["svd-rs/derive-from"]
18+
expand = ["derive-from"]
1819

1920
[dependencies]
20-
svd-rs = { version = "0.13.1", path = "../svd-rs"}
21+
svd-rs = { version = "0.13.2", path = "../svd-rs"}
2122
roxmltree = "0.14.1"
2223
anyhow = "1.0.45"
2324
thiserror = "1.0.30"
2425

2526
[dev-dependencies]
2627
serde_json = { version = "1.0", features = ["preserve_order"] }
2728
serde_yaml = "0.8.23"
28-
svd-rs = { version = "0.13.1", path = "../svd-rs", features = ["serde"] }
29+
svd-rs = { version = "0.13.2", path = "../svd-rs", features = ["serde"] }
2930

3031
[[example]]
3132
name = "svd2json"

0 commit comments

Comments
 (0)