File tree Expand file tree Collapse file tree 6 files changed +35
-6
lines changed Expand file tree Collapse file tree 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/).
77
88## Unreleased
99
10+ ## [ v0.13.0] - 2022-01-02
11+
12+ - Bump ` svd-rs `
13+
1014## [ v0.12.0] - 2021-11-11
1115
1216- Bump ` svd-rs `
@@ -18,3 +22,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1822- Splitted from ` svd-parser `
1923
2024Previous 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"
99name = " svd-encoder"
1010repository = " https://github.com/rust-embedded/svd"
1111edition = " 2018"
12- version = " 0.12 .0"
12+ version = " 0.13 .0"
1313readme = " README.md"
1414
1515[dependencies ]
16- svd-rs = { version = " 0.12 .0" , path = " ../svd-rs" }
16+ svd-rs = { version = " 0.13 .0" , path = " ../svd-rs" }
1717thiserror = " 1.0.30"
1818
1919[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/).
77
88## Unreleased
99
10+ ## [ v0.13.0] - 2022-01-02
11+
12+ - Add ` svd2yaml ` example
13+ - Bump ` svd-rs `
14+
1015## [ v0.12.0] - 2021-11-11
1116
1217- Bump ` svd-rs `
@@ -17,3 +22,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1722## [ v0.11.0] - 2021-10-02
1823
1924Previous 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"
1010name = " svd-parser"
1111repository = " https://github.com/rust-embedded/svd"
1212edition = " 2018"
13- version = " 0.12 .0"
13+ version = " 0.13 .0"
1414readme = " README.md"
1515
1616[features ]
1717derive-from = [" svd-rs/derive-from" ]
1818
1919[dependencies ]
20- svd-rs = { version = " 0.12 .0" , path = " ../svd-rs" }
20+ svd-rs = { version = " 0.13 .0" , path = " ../svd-rs" }
2121roxmltree = " 0.14.1"
2222anyhow = " 1.0.45"
2323thiserror = " 1.0.30"
2424
2525[dev-dependencies ]
2626serde_json = { version = " 1.0" , features = [" preserve_order" ] }
2727serde_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" ] }
2929
3030[[example ]]
3131name = " 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/).
77
88## Unreleased
99
10+ ## [ v0.13.0] - 2022-01-04
11+
1012- fixed ` BitRange ` deserializing
1113- skip serializing optional fields in ` Cpu ` if empty
1214- skip serializing ` values ` in ` EnumeratedValues ` if empty
@@ -58,3 +60,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5860
5961Previous versions in common [ changelog] [ ../CHANGELOG.md ] .
6062
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"
99name = " svd-rs"
1010repository = " https://github.com/rust-embedded/svd"
1111edition = " 2018"
12- version = " 0.12.1 "
12+ version = " 0.13.0 "
1313readme = " README.md"
1414
1515[features ]
You can’t perform that action at this time.
0 commit comments