Skip to content

Commit 5b6615e

Browse files
authored
Merge pull request #851 from rust-embedded/r0334
release 0.33.4
2 parents 0671417 + f6b6da6 commit 5b6615e

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.33.4] - 2024-06-16
11+
1012
- Add `html-url` option to access `svdtools html` files from docs
1113
- Move `Reg` in separate file
1214
- Use `warning` class in docs
@@ -896,7 +898,8 @@ peripheral.register.write(|w| w.field().set());
896898

897899
- Initial version of the `svd2rust` tool
898900

899-
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.33.3...HEAD
901+
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.33.4...HEAD
902+
[v0.33.4]: https://github.com/rust-embedded/svd2rust/compare/v0.33.3...v0.33.4
900903
[v0.33.3]: https://github.com/rust-embedded/svd2rust/compare/v0.33.2...v0.33.3
901904
[v0.33.2]: https://github.com/rust-embedded/svd2rust/compare/v0.33.1...v0.33.2
902905
[v0.33.1]: https://github.com/rust-embedded/svd2rust/compare/v0.33.0...v0.33.1

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-11
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,11 @@ categories = [
1313
]
1414
description = "Generate Rust register maps (`struct`s) from SVD files"
1515
documentation = "https://docs.rs/svd2rust"
16-
keywords = [
17-
"svd",
18-
"embedded",
19-
"register",
20-
"map",
21-
"generator",
22-
]
16+
keywords = ["svd", "embedded", "register", "map", "generator"]
2317
license = "MIT OR Apache-2.0"
2418
name = "svd2rust"
2519
repository = "https://github.com/rust-embedded/svd2rust/"
26-
version = "0.33.3"
20+
version = "0.33.4"
2721
readme = "README.md"
2822
rust-version = "1.74"
2923

@@ -44,7 +38,10 @@ yaml = ["dep:serde_yaml"]
4438

4539
[dependencies]
4640
clap = { version = "4.0", optional = true }
47-
irx-config = { version = "=3.3.0", features = ["cmd", "toml-parser"], optional = true }
41+
irx-config = { version = "=3.3.0", features = [
42+
"cmd",
43+
"toml-parser",
44+
], optional = true }
4845
env_logger = { version = "0.11", optional = true }
4946
inflections = "1.1"
5047
log = { version = "~0.4", features = ["std"] }
@@ -69,7 +66,7 @@ version = "0.14.8"
6966

7067
[dependencies.syn]
7168
version = "2.0"
72-
features = ["full","extra-traits"]
69+
features = ["full", "extra-traits"]
7370

7471
[workspace]
7572
members = ["ci/svd2rust-regress"]
@@ -79,5 +76,5 @@ exclude = [
7976
# workaround for https://github.com/rust-lang/cargo/pull/12779, doesn't work for output though
8077
# see https://github.com/rust-lang/cargo/issues/6009#issuecomment-1925445245
8178
"output/baseline/**",
82-
"output/current/**"
79+
"output/current/**",
8380
]

0 commit comments

Comments
 (0)