Skip to content

Commit

Permalink
Merge pull request #77 from bnb-chain/develop
Browse files Browse the repository at this point in the history
release: prepare for v1.0.3
  • Loading branch information
j75689 authored Oct 9, 2024
2 parents 7922c22 + fcfef54 commit 2ed706a
Show file tree
Hide file tree
Showing 829 changed files with 732,185 additions and 10,396 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
assets/** linguist-vendored
documentation/** linguist-vendored
tests/** linguist-vendored
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# strategy:
# fail-fast: false
# matrix:
# features: ["", "optimism"]
# features: ["", "optimism,kzg-rs"]
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -108,3 +108,15 @@ jobs:
with:
components: rustfmt
- run: cargo fmt --all --check

typos-check:
name: TyposCheck
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/[email protected]
with:
config: ./Typos.toml
isolated: true

10 changes: 9 additions & 1 deletion .github/workflows/ethereum-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
ethtests/EIPTests/StateTests/stEIP1153-transientStorage/ \
ethtests/EIPTests/StateTests/stEIP4844-blobtransactions/ \
ethtests/EIPTests/StateTests/stEIP2537/ \
tests/eof_suite/state_tests \
ethtests/EIPTests/StateTests/stEOF \
tests/eof_suite/eest/state_tests \
tests/eof_suite/evmone/state_tests \
tests/prague_suite/state_tests
- name: Run EOF validation tests
run: |
cross run --target ${{matrix.target}} --profile ${{ matrix.profile }} -p revme -- eof-validation \
ethtests/EOFTests \
tests/eof_suite/eest/eof_tests/prague \
tests/eof_suite/evmone/eof_tests
50 changes: 50 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,55 @@
Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag.

# v44 tag
date: 18.09.2024

Small maintenance release.
Code can be found in release/v44 branch.
Fixes bug with Inspector selfdestruct not called every time, and enabled PRAGUE_EOF in statetest for PRAGUE tests.

* `revme`: 0.10.1 -> 0.10.2
* `revm`: 14.0.1 -> 14.0.2
* `revm-interpreter`: 10.0.1 -> 10.0.2
* `revm-primitives`: 9.0.1 -> 9.0.2
* `revm-precompile`: 11.0.1 -> 11.0.2
* `revm-test`: 0.1.0

# v43 tag
date: 30.08.2024

Logo change and doc fix.

* `revm`: 14.0.0 -> 14.0.1
* `revm-interpreter`: 10.0.0 -> 10.0.1
* `revm-primitives`: 9.0.0 -> 9.0.1
* `revm-precompile`: 11.0.0 -> 11.0.1
* `revme`: 0.10.0 -> 0.10.1

# v42 tag
date: 29.08.2024

new EIP-7702 implemented. Passing all EOF and EIP-7702 tests.
Preparation for devnet-3.

* `revme`: 0.9.0 -> 0.10.0
* `revm`: 13.0.0 -> 14.0.0
* `revm-interpreter`: 9.0.0 -> 10.0.0
* `revm-primitives`: 8.0.0 -> 9.0.0
* `revm-precompile`: 10.0.0 -> 11.0.0

# v41 tag
date: 08.08.2024

EOF fixes and improvements.
Optimism Granite fork support.

* `revme`: 0.8.0 -> 0.9.0
* `revm`: 12.1.0 -> 13.0.0
* `revm-interpreter`: 8.1.0 -> 9.0.0
* `revm-primitives`: 7.1.0 -> 8.0.0
* `revm-precompile`: 9.2.0 -> 10.0.0
* `revm-test`: 0.1.0

# v40 tag
date 17.07.2024

Expand Down
Loading

0 comments on commit 2ed706a

Please sign in to comment.