Skip to content

Commit

Permalink
Merge branch 'release/10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Sep 2, 2023
2 parents b482d0f + e10a21a commit 4c12b57
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -14,6 +14,13 @@ and this project adheres to [Semantic Versioning].
- Added [EIP-1153](https://eips.ethereum.org/EIPS/eip-1153) transient storage support
[#693](https://github.com/ethereum/evmc/pull/693)

## [10.1.1] — 2023-09-02

### Fixed

- cmake: Fix `evmc_add_vm_test()` not working in cross-compilation
[#695](https://github.com/ethereum/evmc/pull/695)

## [10.1.0] — 2023-04-22

### Added
Expand Down Expand Up @@ -692,7 +699,8 @@ removed.
[#52](https://github.com/ethereum/evmc/pull/52)


[11.0.0]: https://github.com/ethereum/evmc/compare/v10.1.0..master
[11.0.0]: https://github.com/ethereum/evmc/compare/v10.1.1..master
[10.1.1]: https://github.com/ethereum/evmc/releases/tag/v10.1.1
[10.1.0]: https://github.com/ethereum/evmc/releases/tag/v10.1.0
[10.0.0]: https://github.com/ethereum/evmc/releases/tag/v10.0.0
[9.0.0]: https://github.com/ethereum/evmc/releases/tag/v9.0.0
Expand Down
2 changes: 1 addition & 1 deletion cmake/EVMC.cmake
Expand Up @@ -14,5 +14,5 @@ function(evmc_add_vm_test)
endif()

cmake_parse_arguments("" "" NAME;TARGET "" ${ARGN})
add_test(NAME ${_NAME} COMMAND $<TARGET_FILE:evmc::evmc-vmtester> $<TARGET_FILE:${_TARGET}>)
add_test(NAME ${_NAME} COMMAND evmc::evmc-vmtester $<TARGET_FILE:${_TARGET}>)
endfunction()

0 comments on commit 4c12b57

Please sign in to comment.