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/).
7
7
8
8
## Unreleased
9
9
10
+ ## [ v0.14.5] - 2023-08-20
11
+
10
12
- Adapt the ` riscv ` element to handle ` riscv::Exception ` .
11
13
- Add ` riscv ` element for configuration parameters related to RISC-V targets.
12
14
You must use the ` unstable-riscv ` feature to enable this exeperimental element.
13
15
- Bump MSRV to 1.65.0
14
16
15
- ## [ v0.14.3 ] - 2023-11-15
17
+ ## [ v0.14.4 ] - 2023-11-15
16
18
17
19
- Bump ` svd-rs ` to 0.14.4
18
20
@@ -55,7 +57,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
55
57
56
58
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
57
59
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
59
62
[ v0.14.4 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.3...svd-rs-v0.14.4
60
63
[ v0.14.3 ] : https://github.com/rust-embedded/svd/compare/svd-encoder-v0.14.2..svd-rs-v0.14.2
61
64
[ 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"
8
8
repository = " https://github.com/rust-embedded/svd"
9
9
edition = " 2021"
10
10
rust-version = " 1.65.0"
11
- version = " 0.14.4 "
11
+ version = " 0.14.5 "
12
12
readme = " README.md"
13
13
14
14
[features ]
15
15
unstable-riscv = [" svd-rs/unstable-riscv" ]
16
16
17
17
[dependencies ]
18
18
convert_case = " 0.6.0"
19
- svd-rs = { version = " 0.14.7 " , path = " ../svd-rs" }
19
+ svd-rs = { version = " 0.14.9 " , path = " ../svd-rs" }
20
20
thiserror = " 1.0.31"
21
21
22
22
[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/).
7
7
8
8
## Unreleased
9
9
10
+ ## [ v0.14.6] - 2024-08-20
11
+
10
12
- Adapt the ` riscv ` element to handle ` riscv::Exception ` .
11
13
- Add ` riscv ` element for configuration parameters related to RISC-V targets.
12
14
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/).
74
76
75
77
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
76
78
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
78
81
[ v0.14.5 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.4...svd-rs-v0.14.7
79
82
[ v0.14.4 ] : https://github.com/rust-embedded/svd/compare/svd-parser-v0.14.3...svd-parser-v0.14.4
80
83
[ 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"
11
11
repository = " https://github.com/rust-embedded/svd"
12
12
edition = " 2021"
13
13
rust-version = " 1.65.0"
14
- version = " 0.14.5 "
14
+ version = " 0.14.6 "
15
15
readme = " README.md"
16
16
17
17
[features ]
@@ -28,7 +28,7 @@ thiserror = "1.0.31"
28
28
[dev-dependencies ]
29
29
serde_json = { version = " 1.0" , features = [" preserve_order" ] }
30
30
serde_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" ] }
32
32
33
33
[[example ]]
34
34
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.14.9] - 2024-08-20
11
+
10
12
- Add ` riscv::Exception ` for custom exception source enumerations.
11
13
- Add ` riscv ` element for configuration parameters related to RISC-V targets.
12
14
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/).
120
122
121
123
Previous versions in common [ changelog] ( ../CHANGELOG.md ) .
122
124
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
124
127
[ v0.14.8 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.7...svd-rs-v0.14.8
125
128
[ v0.14.7 ] : https://github.com/rust-embedded/svd/compare/svd-rs-v0.14.6...svd-rs-v0.14.7
126
129
[ 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"
10
10
repository = " https://github.com/rust-embedded/svd"
11
11
edition = " 2021"
12
12
rust-version = " 1.65.0"
13
- version = " 0.14.8 "
13
+ version = " 0.14.9 "
14
14
readme = " README.md"
15
15
16
16
[features ]
You can’t perform that action at this time.
0 commit comments