Skip to content

Commit 9926a3d

Browse files
committed
riscv-rt v0.16.0
1 parent 5ca859b commit 9926a3d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

riscv-rt/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.16.0] - 2025-09-04
11+
1012
### Added
1113

1214
- New `post-init` feature to run a Rust `__post_init` function before jumping to `main`.
@@ -16,6 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1618
- Additional feature `no-xie-xip` to work on chips without the XIE and XIP CSRs (e.g. ESP32-C2, ESP32-C3)
1719
- Additional feature `defmt` which will implement `defmt::Format` on certain types
1820
- Additional feature `pre-default-start-trap` to execute custom code before `_default_start_trap`
21+
1922
### Changed
2023

2124
- `main` function no longer needs to be close to `_start`. A linker script may copy

riscv-rt/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "riscv-rt"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
rust-version = "1.67"
55
repository = "https://github.com/rust-embedded/riscv"
66
authors = ["The RISC-V Team <[email protected]>"]
@@ -24,9 +24,9 @@ targets = [
2424
riscv-target-parser = { path = "../riscv-target-parser", version = "0.1.2" }
2525

2626
[dependencies]
27-
riscv = { path = "../riscv", version = "0.14.0" }
27+
riscv = { path = "../riscv", version = "0.15.0" }
2828
riscv-pac = { path = "../riscv-pac", version = "0.2.0" }
29-
riscv-rt-macros = { path = "macros", version = "0.5.0" }
29+
riscv-rt-macros = { path = "macros", version = "0.6.0" }
3030

3131
defmt = { version = "1.0.1", optional = true }
3232

riscv-rt/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["riscv", "runtime", "startup"]
1010
license = "MIT OR Apache-2.0"
1111
name = "riscv-rt-macros"
1212
repository = "https://github.com/rust-embedded/riscv"
13-
version = "0.5.0"
13+
version = "0.6.0"
1414
edition = "2021"
1515

1616
[lib]

0 commit comments

Comments
 (0)