File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
6
6
## [ Unreleased]
7
7
8
+ ## [ v0.4.1] - 2020-10-20
9
+
10
+ - Fix missing prebuilt binaries (#271 )
11
+
8
12
## [ v0.4.0] - 2020-10-14
9
13
10
14
- Moved into cortex-m repository
@@ -115,7 +119,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
115
119
116
120
- Initial release
117
121
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
119
124
[ v0.4.0 ] : https://github.com/rust-embedded/cortex-m/compare/c-m-sh-v0.3.5...c-m-sh-v0.4.0
120
125
[ v0.3.5 ] : https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.4...v0.3.5
121
126
[ v0.3.4 ] : https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.3...v0.3.4
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
10
10
name = " cortex-m-semihosting"
11
11
readme = " README.md"
12
12
repository = " https://github.com/rust-embedded/cortex-m"
13
- version = " 0.4.0 "
13
+ version = " 0.4.1 "
14
14
edition = " 2018"
15
15
16
16
[features ]
Original file line number Diff line number Diff line change
1
+ ../bin
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ fn main() {
9
9
if target. starts_with ( "thumbv" ) {
10
10
if env:: var_os ( "CARGO_FEATURE_INLINE_ASM" ) . is_none ( ) {
11
11
fs:: copy (
12
- format ! ( "../ bin/{}.a" , target) ,
12
+ format ! ( "bin/{}.a" , target) ,
13
13
out_dir. join ( format ! ( "lib{}.a" , name) ) ,
14
14
)
15
15
. unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments