Skip to content

Commit 704450a

Browse files
authored
Release/v0.7.4 (#433)
* fix version script * chore: set version 0.7.4 * chore: clippy
1 parent 79e216b commit 704450a

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resolver = "2"
1313

1414
[workspace.package]
1515
edition = "2021"
16-
version = "0.7.3"
16+
version = "0.7.4"
1717
rust-version = "1.86"
1818
authors = ["Flashbots"]
1919
license = "MIT OR Apache-2.0"

crates/report/src/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ pub async fn report(
255255

256256
// compile report
257257
let mut blocks = cache_data.blocks;
258-
blocks.sort_by(|a, b| a.header.number.cmp(&b.header.number));
258+
blocks.sort_by_key(|a| a.header.number);
259259
let report_path = build_html_report(
260260
ReportMetadata {
261261
scenario_name: scenario_title,

scripts/1_change-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ version="$1"
1111
echo "version: $version"
1212

1313
# update workspace.package.version in Cargo.toml
14-
sed -i '' "s/^version = \".*\"/version = \"$version\"/" Cargo.toml
14+
sed -i "s/^version = \".*\"/version = \"$version\"/" Cargo.toml
1515

1616
echo "finished."
1717
git status

0 commit comments

Comments
 (0)