Skip to content

Commit

Permalink
Merge branch 'main' into eliza/instance-updater
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed May 29, 2024
2 parents f316596 + a485a4c commit 1b66988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev-tools/releng/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ use crate::job::Jobs;
/// to as "v8", "version 8", or "release 8" to customers). The use of semantic
/// versioning is mostly to hedge for perhaps wanting something more granular in
/// the future.
const BASE_VERSION: Version = Version::new(8, 0, 0);
const BASE_VERSION: Version = Version::new(9, 0, 0);

#[derive(Debug, Clone, Copy)]
enum InstallMethod {
Expand Down
2 changes: 1 addition & 1 deletion nexus/types/src/deployment/blueprint_diff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ impl<'diff> BlueprintDiffDisplay<'diff> {
) -> impl IntoIterator<Item = KvListWithHeading> {
macro_rules! diff_row {
($member:ident, $label:expr) => {
diff_row!($member, $label, |value| value)
diff_row!($member, $label, std::convert::identity)
};

($member:ident, $label:expr, $display:expr) => {
Expand Down

0 comments on commit 1b66988

Please sign in to comment.