File tree 3 files changed +8
-3
lines changed 3 files changed +8
-3
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/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.22.1] - 2022-04-05
11
+
12
+ - Fix #579
13
+
10
14
## [ v0.22.0] - 2022-04-05
11
15
12
16
### Added
@@ -673,7 +677,8 @@ peripheral.register.write(|w| w.field().set());
673
677
674
678
- Initial version of the ` svd2rust ` tool
675
679
676
- [ Unreleased ] : https://github.com/rust-embedded/svd2rust/compare/v0.22.0...HEAD
680
+ [ Unreleased ] : https://github.com/rust-embedded/svd2rust/compare/v0.22.1...HEAD
681
+ [ v0.22.1 ] : https://github.com/rust-embedded/svd2rust/compare/v0.22.0...v0.22.1
677
682
[ v0.22.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.21.0...v0.22.0
678
683
[ v0.21.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.20.0...v0.21.0
679
684
[ v0.20.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.19.0...v0.20.0
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ keywords = [
23
23
license = " MIT OR Apache-2.0"
24
24
name = " svd2rust"
25
25
repository = " https://github.com/rust-embedded/svd2rust/"
26
- version = " 0.22.0 "
26
+ version = " 0.22.1 "
27
27
readme = " README.md"
28
28
29
29
[package .metadata .deb ]
Original file line number Diff line number Diff line change @@ -745,7 +745,7 @@ fn expand_cluster(
745
745
} else {
746
746
let mut accessors = TokenStream :: new ( ) ;
747
747
let nb_name = util:: replace_suffix ( & info. name , "" ) ;
748
- let ty = name_to_wrapped_ty ( & nb_name, name) ?;
748
+ let ty = name_to_ty ( & nb_name, name) ?;
749
749
let nb_name_cs =
750
750
Ident :: new ( & nb_name. to_sanitized_snake_case ( ) , Span :: call_site ( ) ) ;
751
751
let description = info. description . as_ref ( ) . unwrap_or ( & info. name ) ;
You can’t perform that action at this time.
0 commit comments