File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ This changelog tracks the Rust `svdtools` project. See
5
5
6
6
## [ Unreleased]
7
7
8
+ ## [ v0.3.6] 2023-11-01
9
+
10
+ * Fix #184
11
+
8
12
## [ v0.3.5] 2023-11-30
9
13
10
14
* Move field with derived enums before other
@@ -106,7 +110,8 @@ Other changes:
106
110
107
111
* Initial release with feature-parity with the Python project.
108
112
109
- [ Unreleased ] : https://github.com/rust-embedded/svdtools/compare/v0.3.5...HEAD
113
+ [ Unreleased ] : https://github.com/rust-embedded/svdtools/compare/v0.3.6...HEAD
114
+ [ v0.3.6 ] : https://github.com/rust-embedded/svdtools/compare/v0.3.5...v0.3.6
110
115
[ v0.3.5 ] : https://github.com/rust-embedded/svdtools/compare/v0.3.4...v0.3.5
111
116
[ v0.3.4 ] : https://github.com/rust-embedded/svdtools/compare/v0.3.3...v0.3.4
112
117
[ v0.3.3 ] : https://github.com/rust-embedded/svdtools/compare/v0.3.2...v0.3.3
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " svdtools"
3
- version = " 0.3.5 "
3
+ version = " 0.3.6 "
4
4
repository = " https://github.com/rust-embedded/svdtools/"
5
5
description = " Tool for modifying bugs in CMSIS SVD"
6
6
authors = [
Original file line number Diff line number Diff line change @@ -291,7 +291,6 @@ fn make_ev_array(values: &Hash) -> Result<EnumeratedValuesBuilder> {
291
291
let value = value as u64 ;
292
292
let ev = EnumeratedValue :: builder ( )
293
293
. name ( vname. into ( ) )
294
- . value ( Some ( value) )
295
294
. description ( Some ( description. into ( ) ) ) ;
296
295
let ev = ( if def {
297
296
ev. is_default ( Some ( true ) )
You can’t perform that action at this time.
0 commit comments