File tree Expand file tree Collapse file tree 6 files changed +18
-9
lines changed Expand file tree Collapse file tree 6 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88## Unreleased
99
10+ ## [ v0.14.5] - 2023-08-20
11+
1012- Adapt the ` riscv ` element to handle ` riscv::Exception ` .
1113- Add ` riscv ` element for configuration parameters related to RISC-V targets.
1214 You must use the ` unstable-riscv ` feature to enable this exeperimental element.
1315- Bump MSRV to 1.65.0
1416
15- ## [ v0.14.3 ] - 2023-11-15
17+ ## [ v0.14.4 ] - 2023-11-15
1618
1719- Bump ` svd-rs ` to 0.14.4
1820
@@ -55,7 +57,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5557
5658Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
5759
58- [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.4...HEAD
60+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...HEAD
61+ [ v0.14.5 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
5962[ v0.14.4 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
6063[ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2..svd-rs-v0.14.2
6164[ v0.14.2 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.1..svd-encoder-v0.14.2
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ name = "svd-encoder"
88repository = " https://github.com/rust-embedded/svd"
99edition = " 2021"
1010rust-version = " 1.65.0"
11- version = " 0.14.4 "
11+ version = " 0.14.5 "
1212readme = " README.md"
1313
1414[features ]
1515unstable-riscv = [" svd-rs/unstable-riscv" ]
1616
1717[dependencies ]
1818convert_case = " 0.6.0"
19- svd-rs = { version = " 0.14.7 " , path = " ../svd-rs" }
19+ svd-rs = { version = " 0.14.9 " , path = " ../svd-rs" }
2020thiserror = " 1.0.31"
2121
2222[dependencies .xmltree ]
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.14.6] - 2024-08-20
11+
1012- Adapt the ` riscv ` element to handle ` riscv::Exception ` .
1113- Add ` riscv ` element for configuration parameters related to RISC-V targets.
1214 You must use the ` unstable-riscv ` feature to enable this exeperimental element.
@@ -74,7 +76,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7476
7577Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
7678
77- [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...HEAD
79+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...HEAD
80+ [ v0.14.6 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
7881[ v0.14.5 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7
7982[ v0.14.4 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.3...svd-parser-v0.14.4
8083[ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.2...svd-parser-v0.14.3
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ name = "svd-parser"
1111repository = " https://github.com/rust-embedded/svd"
1212edition = " 2021"
1313rust-version = " 1.65.0"
14- version = " 0.14.5 "
14+ version = " 0.14.6 "
1515readme = " README.md"
1616
1717[features ]
@@ -28,7 +28,7 @@ thiserror = "1.0.31"
2828[dev-dependencies ]
2929serde_json = { version = " 1.0" , features = [" preserve_order" ] }
3030serde_yaml = " 0.8.26"
31- svd-rs = { version = " 0.14.7 " , path = " ../svd-rs" , features = [" serde" ] }
31+ svd-rs = { version = " 0.14.9 " , path = " ../svd-rs" , features = [" serde" ] }
3232
3333[[example ]]
3434name = " 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.14.9] - 2024-08-20
11+
1012- Add ` riscv::Exception ` for custom exception source enumerations.
1113- Add ` riscv ` element for configuration parameters related to RISC-V targets.
1214 You must use the ` unstable-riscv ` feature to enable this exeperimental element.
@@ -120,7 +122,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
120122
121123Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
122124
123- [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...HEAD
125+ [ Unreleased ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.9...HEAD
126+ [ v0.14.9 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.8...svd-rs-v0.14.9
124127[ v0.14.8 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...svd-rs-v0.14.8
125128[ v0.14.7 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...svd-rs-v0.14.7
126129[ v0.14.6 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.5...svd-rs-v0.14.6
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ name = "svd-rs"
1010repository = " https://github.com/rust-embedded/svd"
1111edition = " 2021"
1212rust-version = " 1.65.0"
13- version = " 0.14.8 "
13+ version = " 0.14.9 "
1414readme = " README.md"
1515
1616[features ]
You can’t perform that action at this time.
0 commit comments