Skip to content

Commit

Permalink
EVMC 10.1.1
Browse files Browse the repository at this point in the history
Bump version: 10.1.0 → 10.1.1
  • Loading branch information
chfast committed Sep 2, 2023
1 parent 61c23b8 commit e10a21a
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 10.1.0
current_version = 10.1.1
tag = True
sign_tags = True
tag_message = EVMC {new_version}
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,13 @@ Documentation of all notable changes to the **EVMC** project.
The format is based on [Keep a Changelog],
and this project adheres to [Semantic Versioning].

## [10.1.1] — 2023-09-02

### Fixed

- cmake: Fix `evmc_add_vm_test()` not working in cross-compilation
[#695](https://github.com/ethereum/evmc/pull/695)

## [10.1.0] — 2023-04-22

### Added
Expand Down Expand Up @@ -683,6 +690,7 @@ removed.
[#52](https://github.com/ethereum/evmc/pull/52)


[10.1.1]: https://github.com/ethereum/evmc/releases/tag/v10.1.1
[10.1.0]: https://github.com/ethereum/evmc/releases/tag/v10.1.0
[10.0.0]: https://github.com/ethereum/evmc/releases/tag/v10.0.0
[9.0.0]: https://github.com/ethereum/evmc/releases/tag/v9.0.0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -44,7 +44,7 @@ endif()
cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release)

project(evmc)
set(PROJECT_VERSION 10.1.0)
set(PROJECT_VERSION 10.1.1)

set(CMAKE_CXX_EXTENSIONS OFF)

Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/evmc-declare-tests/Cargo.toml
Expand Up @@ -4,7 +4,7 @@

[package]
name = "evmc-declare-tests"
version = "10.1.0"
version = "10.1.1"
authors = ["Jake Lang <jak3lang@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/evmc-declare/Cargo.toml
Expand Up @@ -4,7 +4,7 @@

[package]
name = "evmc-declare"
version = "10.1.0"
version = "10.1.1"
authors = ["Jake Lang <jak3lang@gmail.com>", "Alex Beregszaszi <alex@rtfs.hu>"]
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 = "10.1.0" }
evmc-vm = { path = "../evmc-vm", version = "10.1.1" }

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

[package]
name = "evmc-sys"
version = "10.1.0"
version = "10.1.1"
authors = ["Alex Beregszaszi <alex@rtfs.hu>"]
license = "Apache-2.0"
repository = "https://github.com/ethereum/evmc"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/evmc-vm/Cargo.toml
Expand Up @@ -4,12 +4,12 @@

[package]
name = "evmc-vm"
version = "10.1.0"
version = "10.1.1"
authors = ["Alex Beregszaszi <alex@rtfs.hu>", "Jake Lang <jak3lang@gmail.com>"]
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 = "10.1.0" }
evmc-sys = { path = "../evmc-sys", version = "10.1.1" }
2 changes: 1 addition & 1 deletion examples/example-rust-vm/Cargo.toml
Expand Up @@ -4,7 +4,7 @@

[package]
name = "example-rust-vm"
version = "10.1.0"
version = "10.1.1"
authors = ["Alex Beregszaszi <alex@rtfs.hu>", "Jake Lang <jak3lang@gmail.com>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion examples/example-rust-vm/src/lib.rs
Expand Up @@ -6,7 +6,7 @@ use core::str::FromStr;
use evmc_declare::evmc_declare_vm;
use evmc_vm::*;

#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "10.1.0")]
#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "10.1.1")]
pub struct ExampleRustVM {
verbosity: i8,
}
Expand Down

0 comments on commit e10a21a

Please sign in to comment.