-
Notifications
You must be signed in to change notification settings - Fork 12
Prepare release #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jonathanpallant
merged 11 commits into
rust-embedded:main
from
thejpster:prepare-release
May 27, 2025
Merged
Prepare release #37
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
0ed3fbb
Switch to Arm team in authors[]
thejpster f0aed0f
Rationalise copyright notices
thejpster 2816a86
Bump versions and update changelogs
thejpster 3839e53
Add missing README
thejpster 226612f
Update top-level README
thejpster 2978a5f
Re-word MSRV notices
thejpster a3c03cc
Add more docs to README files
thejpster 6927314
Remove redundant config file
thejpster fcb80e1
Clean up example Cargo.toml files.
thejpster e3e3c09
Fix typo in arm-targets CHANGELOG
thejpster 38e95f7
Fix typo
thejpster File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
No changes | ||
|
||
## [v0.2.0] | ||
|
||
### Added | ||
|
||
* `TargetInfo` struct | ||
* Armv7-A support | ||
|
||
### Changed | ||
|
||
* The `process_target` function returns a `TargetInfo` | ||
|
||
## [v0.1.0] | ||
|
||
Initial release | ||
|
||
[Unreleased]: https://github.com/rust-embedded/cortex-ar/compare/arm-targets-v0.2.0...HEAD | ||
[v0.2.0]: https://github.com/rust-embedded/cortex-ar/compare/arm-targets-v0.1.0...arm-targets-v0.2.0 | ||
[v0.1.0]: https://github.com/rust-embedded/cortex-ar/releases/tag/arm-targets-v0.1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
authors = [ | ||
"Jonathan Pallant <[email protected]>", | ||
"The Cortex-R Team <cortex-r@teams.rust-embedded.org>" | ||
"The Embedded Devices Working Group Arm Team <arm@teams.rust-embedded.org>" | ||
] | ||
categories = ["development-tools::build-utils"] | ||
description = "Compile-time feature detection for Arm processors" | ||
|
@@ -12,6 +12,6 @@ readme = "README.md" | |
repository = "https://github.com/rust-embedded/cortex-ar.git" | ||
homepage = "https://github.com/rust-embedded/cortex-ar.git" | ||
rust-version = "1.59" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
|
||
[dependencies] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = [ | ||
"Robin Mueller <[email protected]>", | ||
"Jonathan Pallant <[email protected]>", | ||
"The Cortex-R Team <cortex-r@teams.rust-embedded.org>" | ||
"The Embedded Devices Working Group Arm Team <arm@teams.rust-embedded.org>" | ||
] | ||
description = "Run-Time support for Arm Cortex-A" | ||
edition = "2021" | ||
|
@@ -15,7 +15,7 @@ rust-version = "1.82" | |
version = "0.1.0" | ||
|
||
[dependencies] | ||
cortex-ar = {version = "0.1.0", path = "../cortex-ar"} | ||
cortex-ar = {version = "0.2.0", path = "../cortex-ar"} | ||
cortex-ar-rt-macros = { path = "../cortex-ar-rt-macros", version = "=0.1.0" } | ||
|
||
[features] | ||
|
@@ -26,7 +26,7 @@ eabi-fpu = [] | |
vfp-dp = [] | ||
|
||
[build-dependencies] | ||
arm-targets = {version = "0.1.0", path = "../arm-targets"} | ||
arm-targets = {version = "0.2.0", path = "../arm-targets"} | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["armv7a-none-eabihf"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
No changes | ||
|
||
## [v0.1.0] | ||
|
||
Initial release | ||
|
||
[Unreleased]: https://github.com/rust-embedded/cortex-ar/compare/cortex-ar-rt-macros-v0.1.0...HEAD | ||
[v0.1.0]: https://github.com/rust-embedded/cortex-ar/releases/tag/cortex-ar-rt-macros-v0.1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = [ | ||
"Robin Mueller <[email protected]>", | ||
"Jonathan Pallant <[email protected]>", | ||
"The Cortex-R Team <cortex-r@teams.rust-embedded.org>" | ||
"The Embedded Devices Working Group Arm Team <arm@teams.rust-embedded.org>" | ||
] | ||
description = "Run-Time macros for Arm Cortex-A and Cortex-R" | ||
edition = "2021" | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Macros for `cortex-a-rt` and `cortex-r-rt` | ||
|
||
This crate contains proc-macros that are re-exported through the following crates: | ||
|
||
* [`cortex-a-rt`] | ||
* [`cortex-r-rt`] | ||
|
||
[cortex-a-rt]: https://crates.io/crates/cortex-a-rt | ||
[cortex-r-rt]: https://crates.io/crates/cortex-r-rt | ||
|
||
## Minimum Supported Rust Version (MSRV) | ||
|
||
This crate is guaranteed to compile on stable Rust 1.82.0 and up, as recorded | ||
by the `package.rust-version` property in `Cargo.toml`. | ||
|
||
Increasing the MSRV is not considered a breaking change and may occur in a | ||
minor version release (e.g. from `0.3.0` to `0.3.1`, because this is still a | ||
`0.x` release). | ||
|
||
## Licence | ||
|
||
* Copyright (c) Ferrous Systems | ||
* Copyright (c) The Rust Embedded Devices Working Group developers | ||
|
||
Licensed under either [MIT](./LICENSE-MIT) or [Apache-2.0](./LICENSE-APACHE) at | ||
your option. | ||
|
||
## Contribution | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you shall be licensed as above, without any | ||
additional terms or conditions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
authors = [ | ||
"Jonathan Pallant <[email protected]>", | ||
"The Cortex-R Team <cortex-r@teams.rust-embedded.org>", | ||
"The Embedded Devices Working Group Arm Team <arm@teams.rust-embedded.org>", | ||
] | ||
categories = [ | ||
"embedded", | ||
|
@@ -22,7 +22,7 @@ readme = "README.md" | |
repository = "https://github.com/rust-embedded/cortex-ar.git" | ||
homepage = "https://github.com/rust-embedded/cortex-ar.git" | ||
rust-version = "1.82" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
|
||
[dependencies] | ||
arbitrary-int = "1.3.0" | ||
|
@@ -32,7 +32,7 @@ critical-section = {version = "1.2.0", features = ["restore-state-u8"], optional | |
defmt = {version = "0.3", optional = true} | ||
|
||
[build-dependencies] | ||
arm-targets = {version = "0.1.0", path = "../arm-targets"} | ||
arm-targets = {version = "0.2.0", path = "../arm-targets"} | ||
|
||
[features] | ||
# Adds a critical-section implementation that only disables interrupts. | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
authors = [ | ||
"Jonathan Pallant <[email protected]>", | ||
"The Cortex-R Team <cortex-r@teams.rust-embedded.org>" | ||
"The Embedded Devices Working Group Arm Team <arm@teams.rust-embedded.org>" | ||
] | ||
categories = [ | ||
"embedded", | ||
|
@@ -21,19 +21,19 @@ name = "cortex-r-rt" | |
readme = "README.md" | ||
repository = "https://github.com/rust-embedded/cortex-r.git" | ||
rust-version = "1.82" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
|
||
[dependencies] | ||
cortex-ar = {version = "0.1.0", path = "../cortex-ar"} | ||
cortex-ar = {version = "0.2.0", path = "../cortex-ar"} | ||
semihosting = {version = "0.1.18", features = ["stdio"]} | ||
cortex-ar-rt-macros = { path = "../cortex-ar-rt-macros", version = "=0.1.0" } | ||
cortex-ar-rt-macros = {path = "../cortex-ar-rt-macros", version = "=0.1.0"} | ||
|
||
[features] | ||
# Enable the FPU on start-up, even on a soft-float EABI target | ||
eabi-fpu = [] | ||
|
||
[build-dependencies] | ||
arm-targets = {version = "0.1.0", path = "../arm-targets"} | ||
arm-targets = {version = "0.2.0", path = "../arm-targets"} | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["armv7r-none-eabihf", "armv7r-none-eabihf"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be overridden
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
other than this typo, lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, fixed.
Can you approve?