Skip to content

Commit

Permalink
the merge requested pulled multiple other crate versions backwards
Browse files Browse the repository at this point in the history
this fixes it, hopefully.
  • Loading branch information
bunnie committed Nov 2, 2022
1 parent c04cc0e commit 0c52a7a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Core kernel for Xous, including task switching and memory managem
license = "MIT OR Apache-2.0"
edition = "2018"
name = "xous-kernel"
version = "0.9.18"
version = "0.9.19"
resolver = "2"

# Dependency versions enforced by Cargo.lock.
Expand Down
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
"xous-susres@0.1.18", // ticktimer registers with susres to coordinate time continuity across sleeps
"xous-ticktimer@0.1.17", // "well known" service: thread scheduling
].to_vec();
let xous_kernel_remote = "xous-kernel@0.9.18";
let xous_kernel_remote = "xous-kernel@0.9.19";

// ---- extract position independent args ----
let lkey = get_flag("--lkey")?;
Expand Down
2 changes: 1 addition & 1 deletion xtask/src/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub fn check_project_consistency() -> Result<(), DynError> {
let check_pkgs = [
// this set updates with kernel API changes
"xous@0.9.23",
"xous-kernel@0.9.18",
"xous-kernel@0.9.19",
"xous-ipc@0.9.23",
"xous-api-log@0.1.17",
"xous-api-names@0.9.18",
Expand Down

0 comments on commit 0c52a7a

Please sign in to comment.