Skip to content

Commit 916bb72

Browse files
committed
Bump arm-targets
1 parent 486df0d commit 916bb72

File tree

7 files changed

+35
-6
lines changed

7 files changed

+35
-6
lines changed

arm-targets/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
## [Unreleased]
9+
10+
No changes
11+
12+
## [v0.2.0]
13+
14+
### Added
15+
16+
* `TargetInfo` struct
17+
* Armv7-A support
18+
19+
### Changed
20+
21+
* The `process_target` function returns a `TargetInfo`
22+
23+
## [v0.1.0]
24+
25+
Initial release
26+
27+
[Unreleased]: https://github.com/rust-embedded/cortex-ar/compare/arm-targets-v0.1.0...HEAD
28+
[v0.2.0]: https://github.com/rust-embedded/cortex-ar/compare/arm-targets-v0.1.0...arm-targets-v0.2.0
29+
[v0.1.0]: https://github.com/rust-embedded/cortex-ar/releases/tag/arm-targets-v0.1.0

arm-targets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ readme = "README.md"
1212
repository = "https://github.com/rust-embedded/cortex-ar.git"
1313
homepage = "https://github.com/rust-embedded/cortex-ar.git"
1414
rust-version = "1.59"
15-
version = "0.1.0"
15+
version = "0.2.0"
1616

1717
[dependencies]

cortex-a-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ eabi-fpu = []
2626
vfp-dp = []
2727

2828
[build-dependencies]
29-
arm-targets = {version = "0.1.0", path = "../arm-targets"}
29+
arm-targets = {version = "0.2.0", path = "../arm-targets"}
3030

3131
[package.metadata.docs.rs]
3232
targets = ["armv7a-none-eabihf"]

cortex-ar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ critical-section = {version = "1.2.0", features = ["restore-state-u8"], optional
3232
defmt = {version = "0.3", optional = true}
3333

3434
[build-dependencies]
35-
arm-targets = {version = "0.1.0", path = "../arm-targets"}
35+
arm-targets = {version = "0.2.0", path = "../arm-targets"}
3636

3737
[features]
3838
# Adds a critical-section implementation that only disables interrupts.

cortex-r-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cortex-ar-rt-macros = {path = "../cortex-ar-rt-macros", version = "=0.1.0"}
3333
eabi-fpu = []
3434

3535
[build-dependencies]
36-
arm-targets = {version = "0.1.0", path = "../arm-targets"}
36+
arm-targets = {version = "0.2.0", path = "../arm-targets"}
3737

3838
[package.metadata.docs.rs]
3939
targets = ["armv7r-none-eabihf", "armv7r-none-eabihf"]

examples/mps3-an536/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ arm-gic = { git = "https://github.com/google/arm-gic.git", rev = "46a8fc1720f5c2
1919
critical-section = "1.2.0"
2020

2121
[build-dependencies]
22-
arm-targets = {version = "0.1.0", path = "../../arm-targets"}
22+
arm-targets = {version = "0.2.0", path = "../../arm-targets"}
2323

2424
[features]
2525
eabi-fpu = ["cortex-r-rt/eabi-fpu"]

examples/versatileab/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cortex-r-rt = { path = "../../cortex-r-rt" }
1818
semihosting = { version = "0.1.18", features = ["stdio"] }
1919

2020
[build-dependencies]
21-
arm-targets = { version = "0.1.0", path = "../../arm-targets" }
21+
arm-targets = { version = "0.2.0", path = "../../arm-targets" }
2222

2323
[features]
2424
eabi-fpu = ["cortex-a-rt/eabi-fpu", "cortex-r-rt/eabi-fpu"]

0 commit comments

Comments
 (0)