Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Commit 7ea58dd

Browse files
committed
Merge branch 'master' into java-bindings
2 parents 4fac7d5 + 015e4b8 commit 7ea58dd

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 7.0.0
2+
current_version = 7.1.0-alpha.0
33
tag = True
44
sign_tags = True
55
tag_message = EVMC {new_version}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ cable_configure_toolchain(DEFAULT cxx11-pic)
3737
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release)
3838

3939
project(evmc)
40-
set(PROJECT_VERSION 7.0.0)
40+
set(PROJECT_VERSION 7.1.0-alpha.0)
4141

4242
cable_configure_compiler(NO_STACK_PROTECTION)
4343

bindings/java/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ OUT_DIR = ./c/build
1919

2020
build:
2121
mkdir -p $(OUT_DIR)
22-
gcc $(DEBUG_FLAG) -c $(INCLUDES) -o $(OUT_DIR)/loader.o ../../lib/loader/loader.c
23-
gcc $(DEBUG_FLAG) -c $(INCLUDES) $(JAVA_INCLUDES) -o $(OUT_DIR)/host.o ./c/host.c
22+
gcc $(DEBUG_FLAG) $(CFLAGS) -c $(INCLUDES) -o $(OUT_DIR)/loader.o ../../lib/loader/loader.c
23+
gcc $(DEBUG_FLAG) $(CFLAGS) -c $(INCLUDES) $(JAVA_INCLUDES) -o $(OUT_DIR)/host.o ./c/host.c
2424
gcc $(DEBUG_FLAG) ./c/evmc-vm.c $(INCLUDES) $(JAVA_INCLUDES) $(JAVA_LIBS) $(CFLAGS) $(LFLAGS) -o $(OUT_DIR)/evmc.$(EXT) $(OUT_DIR)/host.o $(OUT_DIR)/loader.o
2525
gcc $(DEBUG_FLAG) -shared ../../examples/example_vm/example_vm.c $(INCLUDES) -o $(OUT_DIR)/example_vm.$(EXT)
2626
mkdir -p ./java/build

bindings/rust/evmc-declare-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "evmc-declare-tests"
7-
version = "7.0.0"
7+
version = "7.1.0-alpha.0"
88
authors = ["Jake Lang <jak3lang@gmail.com>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"

bindings/rust/evmc-declare/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "evmc-declare"
7-
version = "7.0.0"
7+
version = "7.1.0-alpha.0"
88
authors = ["Jake Lang <jak3lang@gmail.com>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"

bindings/rust/evmc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "evmc-sys"
7-
version = "7.0.0"
7+
version = "7.1.0-alpha.0"
88
authors = ["Alex Beregszaszi <alex@rtfs.hu>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"

bindings/rust/evmc-vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "evmc-vm"
7-
version = "7.0.0"
7+
version = "7.1.0-alpha.0"
88
authors = ["Alex Beregszaszi <alex@rtfs.hu>", "Jake Lang <jak3lang@gmail.com>"]
99
license = "Apache-2.0"
1010
repository = "https://github.com/ethereum/evmc"

0 commit comments

Comments
 (0)