Skip to content

Commit bc1ef18

Browse files
Merge pull request #230 from rust-embedded/update-dependencies
Update critical-section to 1.2.0
2 parents f73533a + 5d898cc commit bc1ef18

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

riscv-semihosting/CHANGELOG.md

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

66
## [Unreleased]
77

8+
## [v0.1.2] - 2024-10-20
9+
10+
### Changed
11+
12+
- Update critical-section to 1.2.0
13+
814
## [v0.1.1] - 2024-10-19
915

1016
### Changed

riscv-semihosting/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ 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.1"
15+
version = "0.1.2"
1616
edition = "2021"
1717
rust-version = "1.60.0"
1818

@@ -23,5 +23,5 @@ no-semihosting = []
2323
default = ["jlink-quirks"]
2424

2525
[dependencies]
26-
critical-section = "1.0.0"
27-
riscv = { path = "../riscv", version = "0.12.0" }
26+
critical-section = "1.2.0"
27+
riscv = { path = "../riscv", version = "0.12.1" }

riscv/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.12.1] - 2024-10-20
11+
12+
### Changed
13+
14+
- Update critical-section to 1.2.0
15+
1016
## [v0.12.0] - 2024-10-19
1117

1218
### Added

riscv/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"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
rust-version = "1.61"
66
repository = "https://github.com/rust-embedded/riscv"
@@ -25,7 +25,7 @@ s-mode = []
2525
critical-section-single-hart = ["critical-section/restore-state-bool"]
2626

2727
[dependencies]
28-
critical-section = "1.1.2"
28+
critical-section = "1.2.0"
2929
embedded-hal = "1.0.0"
3030
riscv-pac = { path = "../riscv-pac", version = "0.2.0" }
3131
riscv-macros = { path = "macros", version = "0.1.0", optional = true }

0 commit comments

Comments
 (0)