Skip to content

Commit e5ee5e7

Browse files
bors[bot]burrbull
andauthored
Merge #92
92: v0.8.0 r=therealprof a=burrbull >Okay, but before releasing we should properly modernize this crate, meaning: > > 1. Bump the dependencies > 2. Turn it into edition 2018 > 3. Update the including the repository URL > 4. Touch up the CHANGELOG.md to match the previous versions, bump the version and release it All dependencies are actual and edition2018 is on. ~Don't know what you mean in item `#3`.~ Co-authored-by: Andrey Zgarbul <zgarbul.andrey@gmail.com>
2 parents f146a7c + 34c3728 commit e5ee5e7

File tree

4 files changed

+33
-15
lines changed

4 files changed

+33
-15
lines changed

CHANGELOG.md

Lines changed: 15 additions & 11 deletions
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.8.0] - 2019-11-03
11+
12+
- [breaking-change] `RegisterClusterArrayInfo` renamed on `DimElement`
1013
- [breaking-change] `Defaults` field renamed on `RegisterProperties`
1114
and added into `Peripheral` and `ClusterInfo`
1215
- [breaking-change] `Field` splitted on `Field` enum and `FieldInfo` struct
@@ -103,14 +106,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
103106
- Initial SVD parser
104107
- A `parse` utility function to parse the contents of a SVD file (XML)
105108

106-
[Unreleased]: https://github.com/japaric/svd/compare/v0.7.0...HEAD
107-
[v0.7.0]: https://github.com/japaric/svd/compare/v0.6.0...v0.7.0
108-
[v0.6.0]: https://github.com/japaric/svd/compare/v0.5.2...v0.6.0
109-
[v0.5.2]: https://github.com/japaric/svd/compare/v0.5.1...v0.5.2
110-
[v0.5.1]: https://github.com/japaric/svd/compare/v0.5.0...v0.5.1
111-
[v0.5.0]: https://github.com/japaric/svd/compare/v0.4.0...v0.5.0
112-
[v0.4.0]: https://github.com/japaric/svd/compare/v0.3.0...v0.4.0
113-
[v0.3.0]: https://github.com/japaric/svd/compare/v0.2.0...v0.3.0
114-
[v0.2.0]: https://github.com/japaric/svd/compare/v0.1.2...v0.2.0
115-
[v0.1.2]: https://github.com/japaric/svd/compare/v0.1.1...v0.1.2
116-
[v0.1.1]: https://github.com/japaric/svd/compare/v0.1.0...v0.1.1
109+
[Unreleased]: https://github.com/rust-embedded/svd/compare/v0.8.0...HEAD
110+
[v0.8.0]: https://github.com/rust-embedded/svd/compare/v0.7.0...v0.8.0
111+
[v0.7.0]: https://github.com/rust-embedded/svd/compare/v0.6.0...v0.7.0
112+
[v0.6.0]: https://github.com/rust-embedded/svd/compare/v0.5.2...v0.6.0
113+
[v0.5.2]: https://github.com/rust-embedded/svd/compare/v0.5.1...v0.5.2
114+
[v0.5.1]: https://github.com/rust-embedded/svd/compare/v0.5.0...v0.5.1
115+
[v0.5.0]: https://github.com/rust-embedded/svd/compare/v0.4.0...v0.5.0
116+
[v0.4.0]: https://github.com/rust-embedded/svd/compare/v0.3.0...v0.4.0
117+
[v0.3.0]: https://github.com/rust-embedded/svd/compare/v0.2.0...v0.3.0
118+
[v0.2.0]: https://github.com/rust-embedded/svd/compare/v0.1.2...v0.2.0
119+
[v0.1.2]: https://github.com/rust-embedded/svd/compare/v0.1.1...v0.1.2
120+
[v0.1.1]: https://github.com/rust-embedded/svd/compare/v0.1.0...v0.1.1

Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
[package]
2-
authors = ["Jorge Aparicio <japaricious@gmail.com>"]
2+
authors = [
3+
"The Tools Team <tools@teams.rust-embedded.org>",
4+
"Jorge Aparicio <jorge@japaric.io>",
5+
]
36
description = "A CMSIS-SVD file parser"
47
documentation = "https://docs.rs/svd-parser"
58
keywords = ["CMSIS", "SVD", "parser"]
69
license = "MIT OR Apache-2.0"
710
name = "svd-parser"
8-
repository = "https://github.com/japaric/svd"
11+
repository = "https://github.com/rust-embedded/svd"
912
edition = "2018"
10-
version = "0.7.0"
13+
version = "0.8.0"
1114

1215
[features]
1316
derive-from = []

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
[![crates.io](https://img.shields.io/crates/d/svd-parser.svg)](https://crates.io/crates/svd-parser)
22
[![crates.io](https://img.shields.io/crates/v/svd-parser.svg)](https://crates.io/crates/svd-parser)
3-
[![Build Status](https://travis-ci.org/japaric/svd.svg?branch=master)](https://travis-ci.org/japaric/svd)
3+
[![Build Status](https://travis-ci.org/rust-embedded/svd.svg?branch=master)](https://travis-ci.org/rust-embedded/svd)
44
[![Documentation](https://docs.rs/svd-parser/badge.svg)](https://docs.rs/svd-parser)
55

66
# `svd-parser`
77

88
> A CMSIS-SVD file parser
99
10+
This project is developed and maintained by the [Tools team][team].
11+
1012
## ["Documentation"](https://docs.rs/svd-parser)
1113

1214
## License
@@ -24,3 +26,12 @@ at your option.
2426
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the
2527
work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
2628
additional terms or conditions.
29+
30+
## Code of Conduct
31+
32+
Contribution to this crate is organized under the terms of the [Rust Code of
33+
Conduct][CoC], the maintainer of this crate, the [Tools team][team], promises
34+
to intervene to uphold that code of conduct.
35+
36+
[CoC]: CODE_OF_CONDUCT.md
37+
[team]: https://github.com/rust-embedded/wg#the-tools-team
File renamed without changes.

0 commit comments

Comments
 (0)