Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codspeed-runner"
version = "4.16.1"
version = "4.16.2-alpha.1"
edition = "2024"
repository = "https://github.com/CodSpeedHQ/codspeed"
publish = false
Expand Down
8 changes: 4 additions & 4 deletions src/executor/valgrind/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ mod tests {
};
assert_snapshot!(
get_codspeed_valgrind_filename(&system_info).unwrap(),
@"valgrind_3.26.0-0codspeed0_ubuntu-22.04_amd64.deb"
@"valgrind_3.26.0-0codspeed1_ubuntu-22.04_amd64.deb"
);
}

Expand All @@ -216,7 +216,7 @@ mod tests {
};
assert_snapshot!(
get_codspeed_valgrind_filename(&system_info).unwrap(),
@"valgrind_3.26.0-0codspeed0_ubuntu-24.04_amd64.deb"
@"valgrind_3.26.0-0codspeed1_ubuntu-24.04_amd64.deb"
);
}

Expand All @@ -231,7 +231,7 @@ mod tests {
};
assert_snapshot!(
get_codspeed_valgrind_filename(&system_info).unwrap(),
@"valgrind_3.26.0-0codspeed0_ubuntu-22.04_amd64.deb"
@"valgrind_3.26.0-0codspeed1_ubuntu-22.04_amd64.deb"
);
}

Expand All @@ -246,7 +246,7 @@ mod tests {
};
assert_snapshot!(
get_codspeed_valgrind_filename(&system_info).unwrap(),
@"valgrind_3.26.0-0codspeed0_ubuntu-22.04_arm64.deb"
@"valgrind_3.26.0-0codspeed1_ubuntu-22.04_arm64.deb"
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub const MONGODB_TRACER_VERSION: &str = "cs-mongo-tracer-v0.2.0";

pub const VALGRIND_CODSPEED_VERSION: Version = Version::new(3, 26, 0);
pub const VALGRIND_CODSPEED_DEB_REVISION_SUFFIX: &str = "0codspeed0";
pub const VALGRIND_CODSPEED_DEB_REVISION_SUFFIX: &str = "0codspeed1";
pub static VALGRIND_CODSPEED_VERSION_STRING: LazyLock<String> =
LazyLock::new(|| format!("{VALGRIND_CODSPEED_VERSION}.codspeed"));
pub static VALGRIND_CODSPEED_DEB_VERSION: LazyLock<String> = LazyLock::new(|| {
Expand Down