Skip to content
This repository has been archived by the owner on Feb 6, 2025. It is now read-only.

release: prepare for v1.0.6 #177

Merged
merged 4 commits into from
Oct 30, 2024
Merged
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
3 changes: 1 addition & 2 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ env:
BASELINE: base
IAI_CALLGRIND_RUNNER: iai-callgrind-runner
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -30,7 +29,7 @@ jobs:
run: sudo apt update && sudo apt install valgrind
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
env:
CARGO_TERM_COLOR: always
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

jobs:
extract-version:
Expand Down Expand Up @@ -52,7 +51,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.configs.target }}
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: taiki-e/install-action@cross
- uses: Swatinem/rust-cache@v2
with:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ env:
BSC_DOCKER_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/bsc-reth
DOCKER_USERNAME: ${{ github.actor }}
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

jobs:
build:
Expand All @@ -32,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/eth-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
env:
CARGO_TERM_COLOR: always
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -32,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/hive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
env:
CARGO_TERM_COLOR: always
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -28,7 +27,7 @@ jobs:
- run: mkdir artifacts
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ env:
CARGO_TERM_COLOR: always
SEED: rustethereumethereumrust
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -39,7 +38,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- name: Install Geth
run: .github/assets/install_geth.sh
- uses: taiki-e/install-action@nextest
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/kurtosis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
env:
CARGO_TERM_COLOR: always
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -28,7 +27,7 @@ jobs:
- run: mkdir artifacts
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@clippy
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: taiki-e/install-action@cargo-hack
- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand All @@ -126,7 +126,7 @@ jobs:
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }} # fmt need the nightly flag, please update this if reallly needed
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }} # fmt need the nightly flag, please update this if really needed
- name: Run fmt
run: cargo fmt --all --check
- name: Run fmt on book sources
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/op-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
env:
CARGO_TERM_COLOR: always
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -32,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ env:
IMAGE_NAME: ${{ github.repository_owner }}/bsc-reth
CARGO_TERM_COLOR: always
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

jobs:
extract-version:
Expand Down Expand Up @@ -59,7 +58,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.configs.target }}
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: taiki-e/install-action@cross
- uses: Swatinem/rust-cache@v2
with:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ env:
FROM_BLOCK: 0
TO_BLOCK: 50000
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -34,7 +33,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ env:
CARGO_TERM_COLOR: always
SEED: rustethereumethereumrust
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -34,7 +33,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down Expand Up @@ -84,7 +83,7 @@ jobs:
fetch-depth: 1
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -110,7 +109,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:

env:
TOOL_CHAIN: "1.81"
TOOL_CHAIN_NIGHTLY: "nightly-2024-09-09"

jobs:
check-reth:
Expand All @@ -23,7 +22,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
target: x86_64-pc-windows-gnu
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: taiki-e/install-action@cross
- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -42,7 +41,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
target: x86_64-pc-windows-gnu
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: taiki-e/install-action@cross
- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -61,7 +60,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
target: x86_64-pc-windows-gnu
toolchain: ${{ env.TOOL_CHAIN_NIGHTLY }}
toolchain: ${{ env.TOOL_CHAIN }}
- uses: taiki-e/install-action@cross
- uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ several bug fixes.

### Features

- [#175](https://github.com/bnb-chain/reth/pull/175): Update the default threshold of merkle rebuild to 50k.
- [#170](https://github.com/bnb-chain/reth/pull/170): Remove `ChainSpecHardforks` to improve code quality.
- [#163](https://github.com/bnb-chain/reth/pull/163): Merge with upstream v1.1.0.
- [#164](https://github.com/bnb-chain/reth/pull/164): Enable prefetch on the new engine.
- [#153](https://github.com/bnb-chain/reth/pull/153): Enable state cache for live-sync execution.
Expand Down
17 changes: 8 additions & 9 deletions Cargo.lock

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

Loading