Skip to content

Commit ac73235

Browse files
authored
Merge pull request #199 from rust-embedded/r039
release 0.3.9
2 parents 9a70ee8 + 7467f60 commit ac73235

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG-rust.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ This changelog tracks the Rust `svdtools` project. See
55

66
## [Unreleased]
77

8+
## [v0.3.9] 2024-01-19
9+
10+
* Use `<details>` instead of JavaScript in `html` template
811
* Fix escape special characters on Windows
912

1013
## [v0.3.8] 2023-12-23
@@ -127,7 +130,8 @@ Other changes:
127130

128131
* Initial release with feature-parity with the Python project.
129132

130-
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.8...HEAD
133+
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.9...HEAD
134+
[v0.3.9]: https://github.com/rust-embedded/svdtools/compare/v0.3.8...v0.3.9
131135
[v0.3.8]: https://github.com/rust-embedded/svdtools/compare/v0.3.7...v0.3.8
132136
[v0.3.7]: https://github.com/rust-embedded/svdtools/compare/v0.3.6...v0.3.7
133137
[v0.3.6]: https://github.com/rust-embedded/svdtools/compare/v0.3.5...v0.3.6

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svdtools"
3-
version = "0.3.8"
3+
version = "0.3.9"
44
repository = "https://github.com/rust-embedded/svdtools/"
55
description = "Tool for modifying bugs in CMSIS SVD"
66
authors = [

src/html/template.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252
/* fix bootstrap 2 bug, https://github.com/twbs/bootstrap/issues/21060 */
5353
display: list-item;
5454
}
55+
details[open] > summary {
56+
font-weight: 600;
57+
}
5558
</style>
5659
</head>
5760

0 commit comments

Comments
 (0)