Skip to content

Commit

Permalink
release 0.33.4
Browse files Browse the repository at this point in the history
  • Loading branch information
burrbull committed Jun 16, 2024
1 parent 0671417 commit f6b6da6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [v0.33.4] - 2024-06-16

- Add `html-url` option to access `svdtools html` files from docs
- Move `Reg` in separate file
- Use `warning` class in docs
Expand Down Expand Up @@ -896,7 +898,8 @@ peripheral.register.write(|w| w.field().set());

- Initial version of the `svd2rust` tool

[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.33.3...HEAD
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.33.4...HEAD
[v0.33.4]: https://github.com/rust-embedded/svd2rust/compare/v0.33.3...v0.33.4
[v0.33.3]: https://github.com/rust-embedded/svd2rust/compare/v0.33.2...v0.33.3
[v0.33.2]: https://github.com/rust-embedded/svd2rust/compare/v0.33.1...v0.33.2
[v0.33.1]: https://github.com/rust-embedded/svd2rust/compare/v0.33.0...v0.33.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 8 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,11 @@ categories = [
]
description = "Generate Rust register maps (`struct`s) from SVD files"
documentation = "https://docs.rs/svd2rust"
keywords = [
"svd",
"embedded",
"register",
"map",
"generator",
]
keywords = ["svd", "embedded", "register", "map", "generator"]
license = "MIT OR Apache-2.0"
name = "svd2rust"
repository = "https://github.com/rust-embedded/svd2rust/"
version = "0.33.3"
version = "0.33.4"
readme = "README.md"
rust-version = "1.74"

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

[dependencies]
clap = { version = "4.0", optional = true }
irx-config = { version = "=3.3.0", features = ["cmd", "toml-parser"], optional = true }
irx-config = { version = "=3.3.0", features = [
"cmd",
"toml-parser",
], optional = true }
env_logger = { version = "0.11", optional = true }
inflections = "1.1"
log = { version = "~0.4", features = ["std"] }
Expand All @@ -69,7 +66,7 @@ version = "0.14.8"

[dependencies.syn]
version = "2.0"
features = ["full","extra-traits"]
features = ["full", "extra-traits"]

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

0 comments on commit f6b6da6

Please sign in to comment.