Skip to content

Commit

Permalink
Merge #177
Browse files Browse the repository at this point in the history
177: release 0.12.0 r=Emilgardis a=burrbull



Co-authored-by: Andrey Zgarbul <zgarbul.andrey@gmail.com>
  • Loading branch information
bors[bot] and burrbull authored Nov 11, 2021
2 parents 417539e + 4519df6 commit c802dd1
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
3 changes: 3 additions & 0 deletions svd-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.12.0] - 2021-11-11

- Bump `svd-rs`
- Add `protection` encoding
- Add `readAction` encoding
- Add array support for peripherals
Expand Down
7 changes: 3 additions & 4 deletions svd-encoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ license = "MIT OR Apache-2.0"
name = "svd-encoder"
repository = "https://github.com/rust-embedded/svd"
edition = "2018"
version = "0.11.0"
version = "0.12.0"
readme = "README.md"

[dependencies]
svd-rs = { version = "0.11.0", path = "../svd-rs"}
anyhow = "1.0.19"
thiserror = "1.0.5"
svd-rs = { version = "0.12.0", path = "../svd-rs"}
thiserror = "1.0.30"

[dependencies.xmltree]
version = "0.10.3"
Expand Down
3 changes: 3 additions & 0 deletions svd-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.12.0] - 2021-11-11

- Bump `svd-rs`
- Add `protection` parsing
- Add `readAction` parsing
- Add array support for peripherals
Expand Down
10 changes: 5 additions & 5 deletions svd-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ license = "MIT OR Apache-2.0"
name = "svd-parser"
repository = "https://github.com/rust-embedded/svd"
edition = "2018"
version = "0.11.0"
version = "0.12.0"
readme = "README.md"

[features]
derive-from = ["svd-rs/derive-from"]

[dependencies]
svd-rs = { version = "0.11.0", path = "../svd-rs"}
svd-rs = { version = "0.12.0", path = "../svd-rs"}
roxmltree = "0.14.1"
anyhow = "1.0.19"
thiserror = "1.0.5"
anyhow = "1.0.45"
thiserror = "1.0.30"

[dev-dependencies]
serde_json = "1.0"
svd-rs = { version = "0.11.0", path = "../svd-rs", features = ["serde"] }
svd-rs = { version = "0.12.0", path = "../svd-rs", features = ["serde"] }

[[example]]
name = "svd2json"
3 changes: 3 additions & 0 deletions svd-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [v0.12.0] - 2021-11-11

- Bump dependencies
- Add check for wrong size of `bitRange` width
- Don't clone when serialize
- Add optional entries to `Cpu`
Expand Down
4 changes: 2 additions & 2 deletions svd-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
name = "svd-rs"
repository = "https://github.com/rust-embedded/svd"
edition = "2018"
version = "0.11.2"
version = "0.12.0"
readme = "README.md"

[features]
Expand All @@ -22,7 +22,7 @@ thiserror = "1.0.5"
version = "1"

[dependencies.once_cell]
version = "1.5.2"
version = "1.8.0"

[dependencies.serde]
version = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ license = "MIT OR Apache-2.0"
name = "svd-tests"
repository = "https://github.com/rust-embedded/svd"
edition = "2018"
version = "0.11.0"
version = "0.12.0"
publish = false

[dependencies]
Expand All @@ -13,4 +13,4 @@ svd-parser = { path = "../svd-parser"}
svd-encoder = { path = "../svd-encoder"}
roxmltree = "0.14.1"
xmltree = "0.10.3"
anyhow = "1.0.19"
anyhow = "1.0.45"

0 comments on commit c802dd1

Please sign in to comment.