From 5d898cc3f8c1076529c27811b9d3fa35900e703a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rom=C3=A1n=20C=C3=A1rdenas=20Rodr=C3=ADguez?= Date: Sun, 20 Oct 2024 09:42:36 +0200 Subject: [PATCH] Update critical-section to 1.2.0 --- riscv-semihosting/CHANGELOG.md | 6 ++++++ riscv-semihosting/Cargo.toml | 6 +++--- riscv/CHANGELOG.md | 6 ++++++ riscv/Cargo.toml | 4 ++-- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/riscv-semihosting/CHANGELOG.md b/riscv-semihosting/CHANGELOG.md index 41a2e1e3..c9415196 100644 --- a/riscv-semihosting/CHANGELOG.md +++ b/riscv-semihosting/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.2] - 2024-10-20 + +### Changed + +- Update critical-section to 1.2.0 + ## [v0.1.1] - 2024-10-19 ### Changed diff --git a/riscv-semihosting/Cargo.toml b/riscv-semihosting/Cargo.toml index 31eb61fa..6d660e97 100644 --- a/riscv-semihosting/Cargo.toml +++ b/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.1.1" +version = "0.1.2" edition = "2021" rust-version = "1.60.0" @@ -23,5 +23,5 @@ no-semihosting = [] default = ["jlink-quirks"] [dependencies] -critical-section = "1.0.0" -riscv = { path = "../riscv", version = "0.12.0" } +critical-section = "1.2.0" +riscv = { path = "../riscv", version = "0.12.1" } diff --git a/riscv/CHANGELOG.md b/riscv/CHANGELOG.md index d4631063..e8a64fb8 100644 --- a/riscv/CHANGELOG.md +++ b/riscv/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.12.1] - 2024-10-20 + +### Changed + +- Update critical-section to 1.2.0 + ## [v0.12.0] - 2024-10-19 ### Added diff --git a/riscv/Cargo.toml b/riscv/Cargo.toml index ccde8ed3..ed652073 100644 --- a/riscv/Cargo.toml +++ b/riscv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "riscv" -version = "0.12.0" +version = "0.12.1" edition = "2021" rust-version = "1.61" repository = "https://github.com/rust-embedded/riscv" @@ -25,7 +25,7 @@ s-mode = [] critical-section-single-hart = ["critical-section/restore-state-bool"] [dependencies] -critical-section = "1.1.2" +critical-section = "1.2.0" embedded-hal = "1.0.0" riscv-pac = { path = "../riscv-pac", version = "0.2.0" } riscv-macros = { path = "macros", version = "0.1.0", optional = true }