Skip to content

Commit 785eb92

Browse files
Merge pull request #292 from rust-embedded/riscv-v0.14.0
Prepare for riscv 0.14.0 release
2 parents 206c7c6 + 5218f18 commit 785eb92

File tree

13 files changed

+33
-18
lines changed

13 files changed

+33
-18
lines changed

riscv-peripheral/CHANGELOG.md

Lines changed: 2 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.3.0] - 2025-06-10
11+
1012
### Changed
1113

1214
- Rework of CLINT peripheral to use methods instead of associated functions.

riscv-peripheral/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "riscv-peripheral"
3-
version = "0.3.0-rc.1"
3+
version = "0.3.0"
44
edition = "2021"
55
rust-version = "1.75"
66
repository = "https://github.com/rust-embedded/riscv"
@@ -16,7 +16,7 @@ license = "ISC"
1616
[dependencies]
1717
embedded-hal = "1.0.0"
1818
paste = "1.0"
19-
riscv = { path = "../riscv", version = "0.13.0" }
19+
riscv = { path = "../riscv", version = "0.14.0" }
2020
riscv-pac = { path = "../riscv-pac", version = "0.2.0" }
2121

2222
[package.metadata.docs.rs]

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.15.0] - 2025-06-10
11+
1012
### Added
1113

1214
- New `device` feature to include `device.x` in `link.x`. This feature is based
@@ -21,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2123

2224
### Changed
2325

26+
- Bump MSRV to 1.67
2427
- Linker file now refers to standard exceptions and interrupts only when the
2528
`no-exceptions` and `no-interrupts` features are disabled, respectively.
2629
This is achieved by substituting `${INCLUDE_LINKER_FILES}` with the contents

riscv-rt/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "riscv-rt"
3-
version = "0.14.0"
4-
rust-version = "1.61"
3+
version = "0.15.0"
4+
rust-version = "1.67"
55
repository = "https://github.com/rust-embedded/riscv"
66
authors = ["The RISC-V Team <[email protected]>"]
77
categories = ["embedded", "no-std"]
@@ -21,12 +21,12 @@ targets = [
2121
]
2222

2323
[build-dependencies]
24-
riscv-target-parser = { path = "../riscv-target-parser", version = "0.1.0" }
24+
riscv-target-parser = { path = "../riscv-target-parser", version = "0.1.2" }
2525

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

3131
[dev-dependencies]
3232
panic-halt = "1.0.0"

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.4.0"
13+
version = "0.5.0"
1414
edition = "2021"
1515

1616
[lib]

riscv-semihosting/CHANGELOG.md

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

66
## [Unreleased]
77

8+
## [v0.2.0] - 2025-06-10
9+
10+
### Changed
11+
12+
- Update riscv to 0.14.0
13+
- Bump MSRV to 1.67
14+
815
## [v0.1.3] - 2025-02-18
916

1017
### Changed

riscv-semihosting/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ license = "MIT OR Apache-2.0"
1212
name = "riscv-semihosting"
1313
readme = "README.md"
1414
repository = "https://github.com/riscv-rust/riscv"
15-
version = "0.1.3"
15+
version = "0.2.0"
1616
edition = "2021"
17-
rust-version = "1.60.0"
17+
rust-version = "1.67"
1818

1919
[features]
2020
u-mode = []
@@ -24,4 +24,4 @@ default = ["jlink-quirks"]
2424

2525
[dependencies]
2626
critical-section = "1.2.0"
27-
riscv = { path = "../riscv", version = "0.13.0" }
27+
riscv = { path = "../riscv", version = "0.14.0" }

riscv-target-parser/CHANGELOG.md

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

66
## [Unreleased]
77

8+
## [v0.1.2] - 2025-06-10
9+
810
### Fixed
911

1012
- Fix links to URLs in docs
@@ -22,4 +24,3 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2224
### Added
2325

2426
- First release.
25-

riscv-target-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "riscv-target-parser"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
rust-version = "1.61"
55
repository = "https://github.com/rust-embedded/riscv"
66
authors = ["The RISC-V Team <[email protected]>"]

riscv/CHANGELOG.md

Lines changed: 2 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.14.0] - 2025-06-10
11+
1012
### Added
1113

1214
- CSR helper macro `write_composite_csr` for writing 64-bit CSRs on 32-bit targets.

riscv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "riscv"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
edition = "2021"
55
rust-version = "1.67"
66
repository = "https://github.com/rust-embedded/riscv"

tests-build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ edition = "2021"
55

66
[dependencies]
77
panic-halt = "1.0"
8-
riscv = { path = "../riscv", version = "0.13.0" }
9-
riscv-rt = { path = "../riscv-rt", version = "0.14.0" }
8+
riscv = { path = "../riscv" }
9+
riscv-rt = { path = "../riscv-rt" }
1010

1111
[features]
1212
pre-init = ["riscv-rt/pre-init"]

tests-trybuild/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
riscv = { path = "../riscv", version = "0.13.0" }
8-
riscv-rt = { path = "../riscv-rt", version = "0.14.0", features = ["no-exceptions", "no-interrupts"]}
7+
riscv = { path = "../riscv" }
8+
riscv-rt = { path = "../riscv-rt", features = ["no-exceptions", "no-interrupts"] }
99
trybuild = "1.0"
1010

1111
[features]

0 commit comments

Comments
 (0)