Skip to content

Commit

Permalink
adopt ^ convention in the verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie committed Jan 31, 2024
1 parent d03fbfe commit 87377a7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions xtask/src/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ pub fn check_project_consistency() -> Result<(), DynError> {
// TODO: retire utralib/svd2utra from publication as well
let check_pkgs = [
// this set updates with kernel API changes
"xous@0.9.57",
"xous-ipc@0.9.57",
"xous-api-log@0.1.53",
"xous-api-names@0.9.55",
"xous-api-susres@0.9.53",
"xous-api-ticktimer@0.9.53",
"xous^0.9.57",
"xous-ipc^0.9.57",
"xous-api-log^0.1.53",
"xous-api-names^0.9.55",
"xous-api-susres^0.9.53",
"xous-api-ticktimer^0.9.53",
];
// utra/svd2utra changes are downgraded to warnings because these now prefer to pull
// from the local patch version, so any inconsistency simply indicates we forgot to
// publish the packages, rather than something nefarious has happened.
let warn_pkgs = [
// this set is only updated if the utralib changes
"utralib@0.1.24",
"svd2utra@0.1.22",
"utralib^0.1.24",
"svd2utra^0.1.22",
];
for pkg in check_pkgs {
verify(pkg.into(), true)?;
Expand Down

0 comments on commit 87377a7

Please sign in to comment.