diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 007a795f4..761045573 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.2.0 +current_version = 6.2.1 tag = True sign_tags = True tag_message = EVMC {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 97c58b19f..eb03001e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [6.2.1] - unreleased +## [6.2.1] - 2019-04-29 - Fixed: [[#256](https://github.com/ethereum/evmc/issues/256), diff --git a/CMakeLists.txt b/CMakeLists.txt index cdeaba9be..216915a3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,7 @@ endif() cable_configure_toolchain(DEFAULT cxx11-pic) project(evmc) -set(PROJECT_VERSION 6.2.0) +set(PROJECT_VERSION 6.2.1) cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release) diff --git a/bindings/rust/evmc-sys/Cargo.toml b/bindings/rust/evmc-sys/Cargo.toml index 1a10a97ae..8ef779153 100644 --- a/bindings/rust/evmc-sys/Cargo.toml +++ b/bindings/rust/evmc-sys/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-sys" -version = "6.2.0" +version = "6.2.1" authors = ["Alex Beregszaszi "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" diff --git a/bindings/rust/evmc-vm/Cargo.toml b/bindings/rust/evmc-vm/Cargo.toml index ca2a8df51..c4d4e68de 100644 --- a/bindings/rust/evmc-vm/Cargo.toml +++ b/bindings/rust/evmc-vm/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-vm" -version = "6.2.0" +version = "6.2.1" authors = ["Alex Beregszaszi "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc"