Skip to content

Commit 480c301

Browse files
committed
Updated CHANGELOG.md & fixed formatting.
1 parent 01e0807 commit 480c301

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
99

1010
- Bump MSRV to 1.64
1111
- Fix dangling implicit derives
12+
- Fix escaping <> and & characters in doc attributes
1213

1314
## [v0.28.0] - 2022-12-25
1415

src/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
use std::borrow::Cow;
22

33
use crate::svd::{Access, Device, DimElement, Field, RegisterInfo, RegisterProperties};
4+
use html_escape::encode_text_minimal;
45
use inflections::Inflect;
56
use proc_macro2::{Ident, Span, TokenStream};
67
use quote::quote;
78
use std::collections::HashSet;
89
use std::path::{Path, PathBuf};
910
use svd_rs::{MaybeArray, Peripheral, PeripheralInfo};
10-
use html_escape::encode_text_minimal;
1111

1212
use syn::{
1313
punctuated::Punctuated, token::Colon2, AngleBracketedGenericArguments, GenericArgument, Lit,

0 commit comments

Comments
 (0)