Skip to content

Commit

Permalink
release 0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
burrbull committed Jan 4, 2022
1 parent 123c6d9 commit fd38bc8
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
4 changes: 4 additions & 0 deletions svd-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
4 changes: 2 additions & 2 deletions svd-encoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
5 changes: 5 additions & 0 deletions svd-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 3 additions & 3 deletions svd-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ 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"

[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"
2 changes: 2 additions & 0 deletions svd-rs/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](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
Expand Down
2 changes: 1 addition & 1 deletion 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.12.1"
version = "0.13.0"
readme = "README.md"

[features]
Expand Down

0 comments on commit fd38bc8

Please sign in to comment.