Skip to content

Commit eefd672

Browse files
committed
c-m-sh: fix missing prebuilt binaries. closes #271
1 parent a6be560 commit eefd672

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

cortex-m-semihosting/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [v0.4.1] - 2020-10-20
9+
10+
- Fix missing prebuilt binaries (#271)
11+
812
## [v0.4.0] - 2020-10-14
913

1014
- Moved into cortex-m repository
@@ -115,7 +119,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
115119

116120
- Initial release
117121

118-
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.4.0...HEAD
122+
[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.4.1...HEAD
123+
[v0.4.1]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.4.0...c-m-sh-v0.4.1
119124
[v0.4.0]: https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.3.5...c-m-sh-v0.4.0
120125
[v0.3.5]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.4...v0.3.5
121126
[v0.3.4]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.3...v0.3.4

cortex-m-semihosting/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
1010
name = "cortex-m-semihosting"
1111
readme = "README.md"
1212
repository = "https://github.com/rust-embedded/cortex-m"
13-
version = "0.4.0"
13+
version = "0.4.1"
1414
edition = "2018"
1515

1616
[features]

cortex-m-semihosting/bin

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../bin

cortex-m-semihosting/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn main() {
99
if target.starts_with("thumbv") {
1010
if env::var_os("CARGO_FEATURE_INLINE_ASM").is_none() {
1111
fs::copy(
12-
format!("../bin/{}.a", target),
12+
format!("bin/{}.a", target),
1313
out_dir.join(format!("lib{}.a", name)),
1414
)
1515
.unwrap();

0 commit comments

Comments
 (0)