mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
Release RTIC v1.1
Bump versions, including using using latest rtic-syntax
This commit is contained in:
parent
c6231d81d8
commit
4f99399e29
3 changed files with 13 additions and 4 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -9,6 +9,14 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
|
|||
|
||||
### Added
|
||||
|
||||
### Fixed
|
||||
|
||||
### Changed
|
||||
|
||||
## [v1.1.0] - 2022-04-13
|
||||
|
||||
### Added
|
||||
|
||||
- Improve how CHANGELOG.md merges are handled
|
||||
- If current $stable and master version matches, dev-book redirects to $stable book
|
||||
- During deploy stage, merge master branch into current stable IFF cargo package version matches
|
||||
|
@ -485,7 +493,8 @@ Yanked due to a soundness issue in `init`; the issue has been mostly fixed in v0
|
|||
|
||||
- Initial release
|
||||
|
||||
[Unreleased]: https://github.com/rtic-rs/cortex-m-rtic/compare/v1.0.0...HEAD
|
||||
[Unreleased]: https://github.com/rtic-rs/cortex-m-rtic/compare/v1.1.0...HEAD
|
||||
[v1.1.0]: https://github.com/rtic-rs/cortex-m-rtic/compare/v1.0.0...v1.1.0
|
||||
[v1.0.0]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.6.0-rc.4...v1.0.0
|
||||
[v0.6.0-rc.4]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.6.0-rc.3...v0.6.0-rc.4
|
||||
[v0.6.0-rc.3]: https://github.com/rtic-rs/cortex-m-rtic/compare/v0.6.0-rc.2...v0.6.0-rc.3
|
||||
|
|
|
@ -14,7 +14,7 @@ name = "cortex-m-rtic"
|
|||
readme = "README.md"
|
||||
repository = "https://github.com/rtic-rs/cortex-m-rtic"
|
||||
|
||||
version = "1.0.0"
|
||||
version = "1.1.0"
|
||||
|
||||
[lib]
|
||||
name = "rtic"
|
||||
|
|
|
@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
|
|||
name = "cortex-m-rtic-macros"
|
||||
readme = "../README.md"
|
||||
repository = "https://github.com/rtic-rs/cortex-m-rtic"
|
||||
version = "1.0.0"
|
||||
version = "1.1.0"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
@ -22,7 +22,7 @@ proc-macro2 = "1"
|
|||
proc-macro-error = "1"
|
||||
quote = "1"
|
||||
syn = "1"
|
||||
rtic-syntax = "1.0.0"
|
||||
rtic-syntax = "1.0.1"
|
||||
|
||||
[features]
|
||||
debugprint = []
|
||||
|
|
Loading…
Reference in a new issue