Merge pull request #411 from ethereum/deprecated-ver

Remove deprecated evmc_revisions
This commit is contained in:
Alex Beregszaszi 2019-08-22 09:07:56 +01:00 committed by GitHub
commit 7ecb310896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 16 deletions

View File

@ -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

View File

@ -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
};