Prechádzať zdrojové kódy

Prepare for releases

Román Cárdenas 4 mesiacov pred
rodič
commit
3384fc8b19

+ 2 - 0
riscv-pac/CHANGELOG.md

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+## [v0.1.0] - 2024-01-14
+
 ### Added
 
 - Add `InterruptNumber`, `PriorityNumber`, and `HartIdNumber` traits.

+ 3 - 0
riscv-rt/CHANGELOG.md

@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+
+## [v0.12.0] - 2024-01-14
+
 ### Added
 
 - Add `links` field in `Cargo.toml`

+ 3 - 3
riscv-rt/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "riscv-rt"
-version = "0.11.0"
+version = "0.12.0"
 rust-version = "1.60"
 repository = "https://github.com/rust-embedded/riscv"
 authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
@@ -17,8 +17,8 @@ s-mode = []
 single-hart = []
 
 [dependencies]
-riscv = {path = "../riscv", version = "0.10"}
-riscv-rt-macros = { path = "macros", version = "0.2.0" }
+riscv = {path = "../riscv", version = "0.11.0"}
+riscv-rt-macros = { path = "macros", version = "0.2.1" }
 
 [dev-dependencies]
 panic-halt = "0.2.0"

+ 1 - 1
riscv-rt/macros/Cargo.toml

@@ -10,7 +10,7 @@ keywords = ["riscv", "runtime", "startup"]
 license = "MIT OR Apache-2.0"
 name = "riscv-rt-macros"
 repository = "https://github.com/rust-embedded/riscv"
-version = "0.2.0"
+version = "0.2.1"
 
 [lib]
 proc-macro = true

+ 2 - 0
riscv-semihosting/CHANGELOG.md

@@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+## [v0.1.0] - 2023-01-18
+
 - Add recommendation for `semihosting` in README.md.
 - Bug fixes
 - Moved to the `riscv` Cargo workspace

+ 2 - 2
riscv-semihosting/Cargo.toml

@@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
 name = "riscv-semihosting"
 readme = "README.md"
 repository = "https://github.com/riscv-rust/riscv"
-version = "0.0.1"
+version = "0.1.0"
 edition = "2021"
 rust-version = "1.60.0"
 
@@ -24,4 +24,4 @@ default = ["jlink-quirks"]
 
 [dependencies]
 critical-section = "1.0.0"
-riscv = { path = "../riscv", version = "0.10.1" }
+riscv = { path = "../riscv", version = "0.11.0" }

+ 1 - 1
riscv-semihosting/src/lib.rs

@@ -216,7 +216,7 @@ pub unsafe fn syscall1(_nr: usize, _arg: usize) -> usize {
         #[cfg(all(riscv, not(feature = "no-semihosting")))]
         () => {
             let mut nr = _nr;
-            let mut arg = _arg;
+            let arg = _arg;
             // The instructions below must always be uncompressed, otherwise
             // it will be treated as a regular break, hence the norvc option.
             //

+ 2 - 0
riscv/CHANGELOG.md

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+## [v0.11.0] - 2024-01-14
+
 ### Added
 
 - Add `asm::ecall()`, a wrapper for implementing an `ecall` instruction

+ 1 - 1
riscv/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "riscv"
-version = "0.10.1"
+version = "0.11.0"
 edition = "2021"
 rust-version = "1.60"
 repository = "https://github.com/rust-embedded/riscv"