From f6b6da63014206564c46aa1c8963b0fbc0f973fd Mon Sep 17 00:00:00 2001 From: Andrey Zgarbul Date: Sun, 16 Jun 2024 07:25:06 +0300 Subject: [PATCH] release 0.33.4 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 19 ++++++++----------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c35b266..58e212da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 109572a1..91c5d200 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1220,7 +1220,7 @@ dependencies = [ [[package]] name = "svd2rust" -version = "0.33.3" +version = "0.33.4" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 790bf34e..d1cce330 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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"] } @@ -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"] @@ -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/**", ]