changelog: Add entry about evmc_load_and_configure()

This commit is contained in:
Paweł Bylica 2019-06-27 13:52:29 +02:00
parent fb471ef3e7
commit 7e81a13161
No known key found for this signature in database
GPG Key ID: 7A0C037434FE77EF
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,12 @@
## [6.3.0] - unreleased
- Added: [[#313](https://github.com/ethereum/evmc/pull/313)]
The loader module introduces standardized EVMC module configuration string
which contains path to the module and additional options.
E.g. `./modules/vm.so,engine=compiler,trace,verbosity=2`.
A VM can be loaded, created and configured atomically with
new `evmc_load_and_configure()` function.
- Changed: [[#293](https://github.com/ethereum/evmc/pull/293)]
In C++ API `evmc::result::raw()` renamed to `evmc::result::release_raw()`.
- Changed: [[#311](https://github.com/ethereum/evmc/pull/311)]