mirror of https://github.com/status-im/evmc.git
parent
224080ef8c
commit
e43026cf9f
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 5.2.0
|
current_version = 6.0.0-dev
|
||||||
tag = False
|
tag = False
|
||||||
commit = True
|
commit = True
|
||||||
message = EVMC {new_version}
|
message = EVMC {new_version}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [6.0.0-dev] - unreleased
|
||||||
|
|
||||||
## [5.2.0] - 2018-08-28
|
## [5.2.0] - 2018-08-28
|
||||||
|
|
||||||
- Feature: [[#81](https://github.com/ethereum/evmc/pull/81)]
|
- Feature: [[#81](https://github.com/ethereum/evmc/pull/81)]
|
||||||
|
@ -50,6 +52,7 @@
|
||||||
Constantinople: Storage status is reported back from `evmc_set_storage()`.
|
Constantinople: Storage status is reported back from `evmc_set_storage()`.
|
||||||
|
|
||||||
|
|
||||||
|
[6.0.0-dev]: https://github.com/ethereum/evmc/compare/v5.2.0...HEAD
|
||||||
[5.2.0]: https://github.com/ethereum/evmc/releases/tag/v5.2.0
|
[5.2.0]: https://github.com/ethereum/evmc/releases/tag/v5.2.0
|
||||||
[5.1.0]: https://github.com/ethereum/evmc/releases/tag/v5.1.0
|
[5.1.0]: https://github.com/ethereum/evmc/releases/tag/v5.1.0
|
||||||
[5.0.0]: https://github.com/ethereum/evmc/releases/tag/v5.0.0
|
[5.0.0]: https://github.com/ethereum/evmc/releases/tag/v5.0.0
|
|
@ -24,7 +24,7 @@ include(defaults/HunterCacheServers)
|
||||||
include(HunterConfig)
|
include(HunterConfig)
|
||||||
|
|
||||||
project(evmc)
|
project(evmc)
|
||||||
set(PROJECT_VERSION 5.2.0)
|
set(PROJECT_VERSION 6.0.0-dev)
|
||||||
|
|
||||||
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release)
|
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release)
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ extern "C" {
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
/** The EVMC ABI version number of the interface declared in this file. */
|
/** The EVMC ABI version number of the interface declared in this file. */
|
||||||
EVMC_ABI_VERSION = 5
|
EVMC_ABI_VERSION = 6
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue