File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 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/).
77
88## [ Unreleased]
99
10+ ## [ v0.22.1] - 2022-04-05
11+
12+ - Fix #579
13+
1014## [ v0.22.0] - 2022-04-05
1115
1216### Added
@@ -673,7 +677,8 @@ peripheral.register.write(|w| w.field().set());
673677
674678- Initial version of the ` svd2rust ` tool
675679
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
677682[ v0.22.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.21.0...v0.22.0
678683[ v0.21.0 ] : https://github.com/rust-embedded/svd2rust/compare/v0.20.0...v0.21.0
679684[ 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 = [
2323license = " MIT OR Apache-2.0"
2424name = " svd2rust"
2525repository = " https://github.com/rust-embedded/svd2rust/"
26- version = " 0.22.0 "
26+ version = " 0.22.1 "
2727readme = " README.md"
2828
2929[package .metadata .deb ]
Original file line number Diff line number Diff line change @@ -745,7 +745,7 @@ fn expand_cluster(
745745 } else {
746746 let mut accessors = TokenStream :: new ( ) ;
747747 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) ?;
749749 let nb_name_cs =
750750 Ident :: new ( & nb_name. to_sanitized_snake_case ( ) , Span :: call_site ( ) ) ;
751751 let description = info. description . as_ref ( ) . unwrap_or ( & info. name ) ;
You can’t perform that action at this time.
0 commit comments