Skip to content

Commit

Permalink
EVMC 9.0.0-alpha.0
Browse files Browse the repository at this point in the history
Bump version: 8.1.0-alpha.0 → 9.0.0-alpha.0
  • Loading branch information
chfast committed May 28, 2021
1 parent c073b70 commit da67705
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 8.1.0-alpha.0
current_version = 9.0.0-alpha.0
tag = True
sign_tags = True
tag_message = EVMC {new_version}
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ endif()
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release)

project(evmc)
set(PROJECT_VERSION 8.1.0-alpha.0)
set(PROJECT_VERSION 9.0.0-alpha.0)

include(GNUInstallDirs) # Must be included after any language is enabled.
if(NOT DEFINED CMAKE_RUNTIME_OUTPUT_DIRECTORY)
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/evmc-declare-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "evmc-declare-tests"
version = "8.1.0-alpha.0"
version = "9.0.0-alpha.0"
authors = ["Jake Lang <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/evmc-declare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "evmc-declare"
version = "8.1.0-alpha.0"
version = "9.0.0-alpha.0"
authors = ["Jake Lang <[email protected]>", "Alex Beregszaszi <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
Expand All @@ -17,7 +17,7 @@ heck = "0.3.1"
proc-macro2 = "1.0"
syn = { version = "1.0", features = ["full"] }
# For documentation examples
evmc-vm = { path = "../evmc-vm", version = "8.1.0-alpha.0" }
evmc-vm = { path = "../evmc-vm", version = "9.0.0-alpha.0" }

[lib]
proc-macro = true
2 changes: 1 addition & 1 deletion bindings/rust/evmc-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "evmc-sys"
version = "8.1.0-alpha.0"
version = "9.0.0-alpha.0"
authors = ["Alex Beregszaszi <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/evmc-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

[package]
name = "evmc-vm"
version = "8.1.0-alpha.0"
version = "9.0.0-alpha.0"
authors = ["Alex Beregszaszi <[email protected]>", "Jake Lang <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
description = "Bindings to EVMC (VM specific)"
edition = "2018"

[dependencies]
evmc-sys = { path = "../evmc-sys", version = "8.1.0-alpha.0" }
evmc-sys = { path = "../evmc-sys", version = "9.0.0-alpha.0" }
2 changes: 1 addition & 1 deletion docs/EVMC.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EVMC – Ethereum Client-VM Connector API {#mainpage}

**ABI version 8**
**ABI version 9**

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].
Expand Down
2 changes: 1 addition & 1 deletion examples/example-rust-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "example-rust-vm"
version = "8.1.0-alpha.0"
version = "9.0.0-alpha.0"
authors = ["Alex Beregszaszi <[email protected]>", "Jake Lang <[email protected]>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/example-rust-vm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use evmc_declare::evmc_declare_vm;
use evmc_vm::*;

#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "8.1.0-alpha.0")]
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "9.0.0-alpha.0")]
pub struct ExampleRustVM;

impl EvmcVm for ExampleRustVM {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/ethereum/evmc/v8
module github.com/ethereum/evmc/v9

go 1.11
2 changes: 1 addition & 1 deletion include/evmc/evmc.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ enum
*
* @see @ref versioning
*/
EVMC_ABI_VERSION = 8
EVMC_ABI_VERSION = 9
};


Expand Down
2 changes: 1 addition & 1 deletion test/gomod/README
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Integration test for EVMC Go module
Usage:

go mod init evmc.ethereum.org/evmc_use
go get github.com/ethereum/evmc/v8@<commit-hash-to-be-tested>
go get github.com/ethereum/evmc/v9@<commit-hash-to-be-tested>
go mod tidy
gcc -shared -I../../include ../../examples/example_vm/example_vm.cpp -o example-vm.so
go test
2 changes: 1 addition & 1 deletion test/gomod/use_evmc_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package evmc_use

import (
"github.com/ethereum/evmc/v8/bindings/go/evmc"
"github.com/ethereum/evmc/v9/bindings/go/evmc"
"testing"
)

Expand Down

0 comments on commit da67705

Please sign in to comment.