Skip to content

Commit

Permalink
Merge pull request #230 from rust-embedded/update-dependencies
Browse files Browse the repository at this point in the history
Update critical-section to 1.2.0
  • Loading branch information
romancardenas authored Oct 20, 2024
2 parents f73533a + 5d898cc commit bc1ef18
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
6 changes: 6 additions & 0 deletions riscv-semihosting/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions riscv-semihosting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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" }
6 changes: 6 additions & 0 deletions riscv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions riscv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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 }
Expand Down

0 comments on commit bc1ef18

Please sign in to comment.