Merge pull request #271 from ethereum/docs-version

docs: add ABI version to the documentation
This commit is contained in:
Alex Beregszaszi 2019-05-09 11:24:07 +01:00 committed by GitHub
commit 912d8758b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -21,7 +21,6 @@ values =
[bumpversion:file:CMakeLists.txt]
[bumpversion:file:include/evmc/evmc.h]
parse = EVMC_ABI_VERSION = (?P<major>\d+)
serialize = {major}
search = EVMC_ABI_VERSION = {current_version}
replace = EVMC_ABI_VERSION = {new_version}
@ -32,3 +31,7 @@ search = version = \"{current_version}\"
[bumpversion:file:bindings/rust/evmc-vm/Cargo.toml]
search = version = \"{current_version}\"
[bumpversion:file:docs/EVMC.md]
serialize = {major}
search = ABI version {current_version}
replace = ABI version {new_version}

View File

@ -1,5 +1,7 @@
# EVMC Ethereum Client-VM Connector API {#mainpage}
**ABI version 6**
The EVMC is the low-level ABI between Ethereum Virtual Machines (EVMs) and
Ethereum Clients. On the EVM-side it supports classic EVM1 and [ewasm].
On the Client-side it defines the interface for EVM implementations