Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.12.0 #177

Merged
merged 1 commit into from
Nov 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dito


- 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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dito


- 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"