From 6f5c6173a693445c1d3b00adce9affa1be002af5 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 24 Apr 2019 21:20:18 +0100 Subject: [PATCH] docs: add ABI version to the documentation --- .bumpversion.cfg | 5 ++++- docs/EVMC.md | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e61c7ca..8e2d0ce 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -21,7 +21,6 @@ values = [bumpversion:file:CMakeLists.txt] [bumpversion:file:include/evmc/evmc.h] -parse = EVMC_ABI_VERSION = (?P\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} diff --git a/docs/EVMC.md b/docs/EVMC.md index 4b3c4c3..ba7e4f5 100644 --- a/docs/EVMC.md +++ b/docs/EVMC.md @@ -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