mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Merge #72
72: switch to a crates.io release of rtfm-syntax r=japaric a=japaric Co-authored-by: Jorge Aparicio <jorge@japaric.io>
This commit is contained in:
commit
cb2d286a66
4 changed files with 14 additions and 7 deletions
|
@ -51,10 +51,6 @@ script:
|
|||
|
||||
after_script: set +e
|
||||
|
||||
cache: cargo
|
||||
before_cache:
|
||||
- chmod -R a+r $HOME/.cargo
|
||||
|
||||
branches:
|
||||
only:
|
||||
- staging
|
||||
|
|
11
CHANGELOG.md
11
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"
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue