diff --git a/svd-encoder/CHANGELOG.md b/svd-encoder/CHANGELOG.md index 2ce2f947..cdf42a8b 100644 --- a/svd-encoder/CHANGELOG.md +++ b/svd-encoder/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [v0.13.0] - 2022-01-02 + +- Bump `svd-rs` + ## [v0.12.0] - 2021-11-11 - Bump `svd-rs` diff --git a/svd-encoder/Cargo.toml b/svd-encoder/Cargo.toml index 84f587f3..2fe7703a 100644 --- a/svd-encoder/Cargo.toml +++ b/svd-encoder/Cargo.toml @@ -9,11 +9,11 @@ license = "MIT OR Apache-2.0" name = "svd-encoder" repository = "https://github.com/rust-embedded/svd" edition = "2018" -version = "0.12.0" +version = "0.13.0" readme = "README.md" [dependencies] -svd-rs = { version = "0.12.0", path = "../svd-rs"} +svd-rs = { version = "0.13.0", path = "../svd-rs"} thiserror = "1.0.30" [dependencies.xmltree] diff --git a/svd-parser/CHANGELOG.md b/svd-parser/CHANGELOG.md index 819bf4a8..c9616f2a 100644 --- a/svd-parser/CHANGELOG.md +++ b/svd-parser/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [v0.13.0] - 2022-01-02 + +- Add `svd2yaml` example +- Bump `svd-rs` + ## [v0.12.0] - 2021-11-11 - Bump `svd-rs` diff --git a/svd-parser/Cargo.toml b/svd-parser/Cargo.toml index b4e85cf4..2194d23d 100644 --- a/svd-parser/Cargo.toml +++ b/svd-parser/Cargo.toml @@ -10,14 +10,14 @@ license = "MIT OR Apache-2.0" name = "svd-parser" repository = "https://github.com/rust-embedded/svd" edition = "2018" -version = "0.12.0" +version = "0.13.0" readme = "README.md" [features] derive-from = ["svd-rs/derive-from"] [dependencies] -svd-rs = { version = "0.12.0", path = "../svd-rs"} +svd-rs = { version = "0.13.0", path = "../svd-rs"} roxmltree = "0.14.1" anyhow = "1.0.45" thiserror = "1.0.30" @@ -25,7 +25,7 @@ thiserror = "1.0.30" [dev-dependencies] serde_json = { version = "1.0", features = ["preserve_order"] } serde_yaml = "0.8.23" -svd-rs = { version = "0.12.0", path = "../svd-rs", features = ["serde"] } +svd-rs = { version = "0.13.0", path = "../svd-rs", features = ["serde"] } [[example]] name = "svd2json" diff --git a/svd-rs/CHANGELOG.md b/svd-rs/CHANGELOG.md index 752cd5a1..5b2df1c2 100644 --- a/svd-rs/CHANGELOG.md +++ b/svd-rs/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [v0.13.0] - 2022-01-04 + - fixed `BitRange` deserializing - skip serializing optional fields in `Cpu` if empty - skip serializing `values` in `EnumeratedValues` if empty diff --git a/svd-rs/Cargo.toml b/svd-rs/Cargo.toml index 7fc1e24b..5592db99 100644 --- a/svd-rs/Cargo.toml +++ b/svd-rs/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" name = "svd-rs" repository = "https://github.com/rust-embedded/svd" edition = "2018" -version = "0.12.1" +version = "0.13.0" readme = "README.md" [features]