Skip to content

Commit c802dd1

Browse files
bors[bot]burrbull
andauthored
Merge #177
177: release 0.12.0 r=Emilgardis a=burrbull Co-authored-by: Andrey Zgarbul <[email protected]>
2 parents 417539e + 4519df6 commit c802dd1

File tree

7 files changed

+21
-13
lines changed

7 files changed

+21
-13
lines changed

svd-encoder/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
## [v0.12.0] - 2021-11-11
11+
12+
- Bump `svd-rs`
1013
- Add `protection` encoding
1114
- Add `readAction` encoding
1215
- Add array support for peripherals

svd-encoder/Cargo.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ license = "MIT OR Apache-2.0"
99
name = "svd-encoder"
1010
repository = "https://github.com/rust-embedded/svd"
1111
edition = "2018"
12-
version = "0.11.0"
12+
version = "0.12.0"
1313
readme = "README.md"
1414

1515
[dependencies]
16-
svd-rs = { version = "0.11.0", path = "../svd-rs"}
17-
anyhow = "1.0.19"
18-
thiserror = "1.0.5"
16+
svd-rs = { version = "0.12.0", path = "../svd-rs"}
17+
thiserror = "1.0.30"
1918

2019
[dependencies.xmltree]
2120
version = "0.10.3"

svd-parser/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
## [v0.12.0] - 2021-11-11
11+
12+
- Bump `svd-rs`
1013
- Add `protection` parsing
1114
- Add `readAction` parsing
1215
- Add array support for peripherals

svd-parser/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ license = "MIT OR Apache-2.0"
1010
name = "svd-parser"
1111
repository = "https://github.com/rust-embedded/svd"
1212
edition = "2018"
13-
version = "0.11.0"
13+
version = "0.12.0"
1414
readme = "README.md"
1515

1616
[features]
1717
derive-from = ["svd-rs/derive-from"]
1818

1919
[dependencies]
20-
svd-rs = { version = "0.11.0", path = "../svd-rs"}
20+
svd-rs = { version = "0.12.0", path = "../svd-rs"}
2121
roxmltree = "0.14.1"
22-
anyhow = "1.0.19"
23-
thiserror = "1.0.5"
22+
anyhow = "1.0.45"
23+
thiserror = "1.0.30"
2424

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

2929
[[example]]
3030
name = "svd2json"

svd-rs/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
## [v0.12.0] - 2021-11-11
11+
12+
- Bump dependencies
1013
- Add check for wrong size of `bitRange` width
1114
- Don't clone when serialize
1215
- Add optional entries to `Cpu`

svd-rs/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
name = "svd-rs"
1010
repository = "https://github.com/rust-embedded/svd"
1111
edition = "2018"
12-
version = "0.11.2"
12+
version = "0.12.0"
1313
readme = "README.md"
1414

1515
[features]
@@ -22,7 +22,7 @@ thiserror = "1.0.5"
2222
version = "1"
2323

2424
[dependencies.once_cell]
25-
version = "1.5.2"
25+
version = "1.8.0"
2626

2727
[dependencies.serde]
2828
version = "1.0"

tests/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ license = "MIT OR Apache-2.0"
44
name = "svd-tests"
55
repository = "https://github.com/rust-embedded/svd"
66
edition = "2018"
7-
version = "0.11.0"
7+
version = "0.12.0"
88
publish = false
99

1010
[dependencies]
@@ -13,4 +13,4 @@ svd-parser = { path = "../svd-parser"}
1313
svd-encoder = { path = "../svd-encoder"}
1414
roxmltree = "0.14.1"
1515
xmltree = "0.10.3"
16-
anyhow = "1.0.19"
16+
anyhow = "1.0.45"

0 commit comments

Comments
 (0)