diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2018-04-16 23:22:01 +0200 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2018-04-16 23:22:01 +0200 |
| commit | 8767f625d8b2bac6b8014fab56957c1bbb40b79a (patch) | |
| tree | b3b3edafea4548e840d11df51155fb55bcbf37ef | |
| parent | 5ff9076e9c1a5cc2e9b57041699d0aa37ca8c768 (diff) | |
switch to a crates.io release of rtfm-syntax
| -rw-r--r-- | CHANGELOG.md | 11 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | macros/Cargo.toml | 4 |
3 files changed, 14 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bff4f8..741738f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.2] - 2018-04-16 + +### Added + +- Span information to error messages + +### Changed + +- Some non fatal error messages have become warning messages. For example, specifying an empty list + of resources now produces a warning instead of a hard error. + ## [v0.3.1] - 2018-01-16 ### Fixed @@ -10,7 +10,7 @@ keywords = ["arm", "cortex-m"] license = "MIT OR Apache-2.0" name = "cortex-m-rtfm" repository = "https://github.com/japaric/cortex-m-rtfm" -version = "0.3.1" +version = "0.3.2" [dependencies] cortex-m = "0.4.0" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 977933e..d36499e 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -7,13 +7,13 @@ keywords = ["arm", "cortex-m"] license = "MIT OR Apache-2.0" name = "cortex-m-rtfm-macros" repository = "https://github.com/japaric/cortex-m-rtfm" -version = "0.3.0" +version = "0.3.1" [dependencies] failure = "0.1.1" proc-macro2 = "0.3.6" quote = "0.5.1" -rtfm-syntax = { git = "https://github.com/japaric/rtfm-syntax", branch = "syn-up" } +rtfm-syntax = "0.3.0" syn = "0.13.1" [lib] |
