File tree 6 files changed +35
-6
lines changed
6 files changed +35
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## Unreleased
9
9
10
+ ## [ v0.13.0] - 2022-01-02
11
+
12
+ - Bump ` svd-rs `
13
+
10
14
## [ v0.12.0] - 2021-11-11
11
15
12
16
- Bump ` svd-rs `
@@ -18,3 +22,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
18
22
- Splitted from ` svd-parser `
19
23
20
24
Previous versions in common [ changelog] [ ../CHANGELOG.md ] .
25
+
26
+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/v0.13.0...HEAD
27
+ [ v0.13.0 ] : https://github.com/rust-embedded/svd/compare/v0.12.0...v0.13.0
28
+ [ v0.12.0 ] : https://github.com/rust-embedded/svd/compare/v0.11.0...v0.12.0
29
+ [ v0.11.0 ] : https://github.com/rust-embedded/svd/compare/v0.10.2...v0.11.0
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ license = "MIT OR Apache-2.0"
9
9
name = " svd-encoder"
10
10
repository = " https://github.com/rust-embedded/svd"
11
11
edition = " 2018"
12
- version = " 0.12 .0"
12
+ version = " 0.13 .0"
13
13
readme = " README.md"
14
14
15
15
[dependencies ]
16
- svd-rs = { version = " 0.12 .0" , path = " ../svd-rs" }
16
+ svd-rs = { version = " 0.13 .0" , path = " ../svd-rs" }
17
17
thiserror = " 1.0.30"
18
18
19
19
[dependencies .xmltree ]
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## Unreleased
9
9
10
+ ## [ v0.13.0] - 2022-01-02
11
+
12
+ - Add ` svd2yaml ` example
13
+ - Bump ` svd-rs `
14
+
10
15
## [ v0.12.0] - 2021-11-11
11
16
12
17
- Bump ` svd-rs `
@@ -17,3 +22,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
17
22
## [ v0.11.0] - 2021-10-02
18
23
19
24
Previous versions in common [ changelog] [ ../CHANGELOG.md ] .
25
+
26
+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/v0.13.0...HEAD
27
+ [ v0.13.0 ] : https://github.com/rust-embedded/svd/compare/v0.12.0...v0.13.0
28
+ [ v0.12.0 ] : https://github.com/rust-embedded/svd/compare/v0.11.0...v0.12.0
29
+ [ v0.11.0 ] : https://github.com/rust-embedded/svd/compare/v0.10.2...v0.11.0
Original file line number Diff line number Diff line change @@ -10,22 +10,22 @@ license = "MIT OR Apache-2.0"
10
10
name = " svd-parser"
11
11
repository = " https://github.com/rust-embedded/svd"
12
12
edition = " 2018"
13
- version = " 0.12 .0"
13
+ version = " 0.13 .0"
14
14
readme = " README.md"
15
15
16
16
[features ]
17
17
derive-from = [" svd-rs/derive-from" ]
18
18
19
19
[dependencies ]
20
- svd-rs = { version = " 0.12 .0" , path = " ../svd-rs" }
20
+ svd-rs = { version = " 0.13 .0" , path = " ../svd-rs" }
21
21
roxmltree = " 0.14.1"
22
22
anyhow = " 1.0.45"
23
23
thiserror = " 1.0.30"
24
24
25
25
[dev-dependencies ]
26
26
serde_json = { version = " 1.0" , features = [" preserve_order" ] }
27
27
serde_yaml = " 0.8.23"
28
- svd-rs = { version = " 0.12 .0" , path = " ../svd-rs" , features = [" serde" ] }
28
+ svd-rs = { version = " 0.13 .0" , path = " ../svd-rs" , features = [" serde" ] }
29
29
30
30
[[example ]]
31
31
name = " svd2json"
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## Unreleased
9
9
10
+ ## [ v0.13.0] - 2022-01-04
11
+
10
12
- fixed ` BitRange ` deserializing
11
13
- skip serializing optional fields in ` Cpu ` if empty
12
14
- skip serializing ` values ` in ` EnumeratedValues ` if empty
@@ -58,3 +60,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
58
60
59
61
Previous versions in common [ changelog] [ ../CHANGELOG.md ] .
60
62
63
+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/v0.13.0...HEAD
64
+ [ v0.13.0 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.12.1...v0.13.0
65
+ [ v0.12.1 ] : https://github.com/rust-embedded/svd/compare/v0.12.0...svd-rs-v0.12.1
66
+ [ v0.12.0 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.11.2...v0.12.0
67
+ [ v0.11.2 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.11.1...svd-rs-v0.11.2
68
+ [ v0.11.1 ] : https://github.com/rust-embedded/svd/compare/v0.11.0...svd-rs-v0.11.1
69
+ [ v0.11.0 ] : https://github.com/rust-embedded/svd/compare/v0.10.2...v0.11.0
70
+
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
9
9
name = " svd-rs"
10
10
repository = " https://github.com/rust-embedded/svd"
11
11
edition = " 2018"
12
- version = " 0.12.1 "
12
+ version = " 0.13.0 "
13
13
readme = " README.md"
14
14
15
15
[features ]
You can’t perform that action at this time.
0 commit comments