mirror of https://github.com/status-im/evmc.git
Merge pull request #411 from ethereum/deprecated-ver
Remove deprecated evmc_revisions
This commit is contained in:
commit
7ecb310896
|
@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning].
|
|||
|
||||
- Previously deprecated `helpers.hpp` header file has been removed.
|
||||
[[#410](https://github.com/ethereum/evmc/pull/410)]
|
||||
- Previously deprecated `EVMC_CONSTANTINOPLE2` and `EVMC_LATEST_REVISION` revisions have been removed.
|
||||
[[#411](https://github.com/ethereum/evmc/pull/411)]
|
||||
|
||||
## [6.3.1] - 2019-08-19
|
||||
|
||||
|
|
|
@ -783,22 +783,7 @@ enum evmc_revision
|
|||
EVMC_BERLIN = 8,
|
||||
|
||||
/** The maximum EVM revision supported. */
|
||||
EVMC_MAX_REVISION = EVMC_BERLIN,
|
||||
|
||||
|
||||
/**
|
||||
* Reserved for the post-Constantinople upgrade.
|
||||
*
|
||||
* @deprecated Replaced with ::EVMC_PETERSBURG.
|
||||
*/
|
||||
EVMC_CONSTANTINOPLE2 EVMC_DEPRECATED = EVMC_PETERSBURG,
|
||||
|
||||
/**
|
||||
* The latests EVM revision supported.
|
||||
*
|
||||
* @deprecated Replaced with ::EVMC_MAX_REVISION.
|
||||
*/
|
||||
EVMC_LATEST_REVISION EVMC_DEPRECATED = EVMC_MAX_REVISION
|
||||
EVMC_MAX_REVISION = EVMC_BERLIN
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue