Skip to content

Commit 23c628f

Browse files
bors[bot]burrbull
andauthored
Merge #187
187: v0.13 r=adamgreig a=burrbull Co-authored-by: Andrey Zgarbul <[email protected]>
2 parents 123c6d9 + 8608d68 commit 23c628f

File tree

6 files changed

+35
-6
lines changed

6 files changed

+35
-6
lines changed

svd-encoder/CHANGELOG.md

+9
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.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

2024
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

svd-encoder/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ license = "MIT OR Apache-2.0"
99
name = "svd-encoder"
1010
repository = "https://github.com/rust-embedded/svd"
1111
edition = "2018"
12-
version = "0.12.0"
12+
version = "0.13.0"
1313
readme = "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"}
1717
thiserror = "1.0.30"
1818

1919
[dependencies.xmltree]

svd-parser/CHANGELOG.md

+10
Original file line numberDiff line numberDiff 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

1924
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

svd-parser/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ license = "MIT OR Apache-2.0"
1010
name = "svd-parser"
1111
repository = "https://github.com/rust-embedded/svd"
1212
edition = "2018"
13-
version = "0.12.0"
13+
version = "0.13.0"
1414
readme = "README.md"
1515

1616
[features]
1717
derive-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"}
2121
roxmltree = "0.14.1"
2222
anyhow = "1.0.45"
2323
thiserror = "1.0.30"
2424

2525
[dev-dependencies]
2626
serde_json = { version = "1.0", features = ["preserve_order"] }
2727
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"] }
2929

3030
[[example]]
3131
name = "svd2json"

svd-rs/CHANGELOG.md

+10
Original file line numberDiff line numberDiff 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

5961
Previous 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+

svd-rs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
name = "svd-rs"
1010
repository = "https://github.com/rust-embedded/svd"
1111
edition = "2018"
12-
version = "0.12.1"
12+
version = "0.13.0"
1313
readme = "README.md"
1414

1515
[features]

0 commit comments

Comments
 (0)