Skip to content

Commit f5f9afb

Browse files
committed
v0.2.3
1 parent 5dcef21 commit f5f9afb

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

cortex-m-rt/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.2.3] - 2017-05-30
11+
12+
### Added
13+
14+
- A `_stext` symbol which can be specified in the linker script to customize the
15+
location of the `.text` section. If not specified the `.text` section will be
16+
placed right after the `.vector_table` section.
17+
1018
## [v0.2.2] - 2017-05-27
1119

1220
### Added
@@ -79,7 +87,8 @@ section size addr
7987

8088
Initial release
8189

82-
[Unreleased]: https://github.com/japaric/cortex-m-rt/compare/v0.2.2...HEAD
90+
[Unreleased]: https://github.com/japaric/cortex-m-rt/compare/v0.2.3...HEAD
91+
[v0.2.3]: https://github.com/japaric/cortex-m-rt/compare/v0.2.2...v0.2.3
8392
[v0.2.2]: https://github.com/japaric/cortex-m-rt/compare/v0.2.1...v0.2.2
8493
[v0.2.1]: https://github.com/japaric/cortex-m-rt/compare/v0.2.0...v0.2.1
8594
[v0.2.0]: https://github.com/japaric/cortex-m-rt/compare/v0.1.3...v0.2.0

cortex-m-rt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"]
77
license = "MIT OR Apache-2.0"
88
name = "cortex-m-rt"
99
repository = "https://github.com/japaric/cortex-m-rt"
10-
version = "0.2.2"
10+
version = "0.2.3"
1111

1212
[dependencies]
1313
r0 = "0.2.1"
@@ -29,4 +29,4 @@ linker-script = []
2929
# prints panic messages to the ITM
3030
panic-over-itm = ["cortex-m"]
3131
# prints panic messages to the host stdout
32-
panic-over-semihosting = ["cortex-m-semihosting"]
32+
panic-over-semihosting = ["cortex-m-semihosting"]

cortex-m-rt/link.x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ SECTIONS
1818
} > FLASH
1919

2020
PROVIDE(_stext = _einterrupts);
21-
21+
2222
.text _stext : ALIGN(4)
2323
{
2424
/* Put reset handler first in .text section so it ends up as the entry */

0 commit comments

Comments
 (0)