diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0f377b04a..b01135955 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 9.0.0-alpha.1 +current_version = 9.0.0 tag = True sign_tags = True tag_message = EVMC {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b6c2fdd6..bb72dc550 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. -## [9.0.0] — unreleased +## [9.0.0] — 2021-06-30 ### Added @@ -583,7 +583,7 @@ removed. [#52](https://github.com/ethereum/evmc/pull/52) -[9.0.0]: https://github.com/ethereum/evmc/compare/v8.0.0..master +[9.0.0]: https://github.com/ethereum/evmc/releases/tag/v9.0.0 [8.0.0]: https://github.com/ethereum/evmc/releases/tag/v8.0.0 [7.5.0]: https://github.com/ethereum/evmc/releases/tag/v7.5.0 [7.4.0]: https://github.com/ethereum/evmc/releases/tag/v7.4.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index a8c98b414..ab9729585 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,7 +44,7 @@ endif() cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Debug Release) project(evmc) -set(PROJECT_VERSION 9.0.0-alpha.1) +set(PROJECT_VERSION 9.0.0) include(GNUInstallDirs) # Must be included after any language is enabled. if(NOT DEFINED CMAKE_RUNTIME_OUTPUT_DIRECTORY) diff --git a/bindings/rust/evmc-declare-tests/Cargo.toml b/bindings/rust/evmc-declare-tests/Cargo.toml index 00a4bbaf2..eded217d0 100644 --- a/bindings/rust/evmc-declare-tests/Cargo.toml +++ b/bindings/rust/evmc-declare-tests/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-declare-tests" -version = "9.0.0-alpha.1" +version = "9.0.0" authors = ["Jake Lang "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" diff --git a/bindings/rust/evmc-declare/Cargo.toml b/bindings/rust/evmc-declare/Cargo.toml index 508814583..5de6ff9ce 100644 --- a/bindings/rust/evmc-declare/Cargo.toml +++ b/bindings/rust/evmc-declare/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-declare" -version = "9.0.0-alpha.1" +version = "9.0.0" authors = ["Jake Lang ", "Alex Beregszaszi "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" @@ -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 = "9.0.0-alpha.1" } +evmc-vm = { path = "../evmc-vm", version = "9.0.0" } [lib] proc-macro = true diff --git a/bindings/rust/evmc-sys/Cargo.toml b/bindings/rust/evmc-sys/Cargo.toml index dfe82625d..589f417a0 100644 --- a/bindings/rust/evmc-sys/Cargo.toml +++ b/bindings/rust/evmc-sys/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-sys" -version = "9.0.0-alpha.1" +version = "9.0.0" 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 0eea630ec..5c8053a86 100644 --- a/bindings/rust/evmc-vm/Cargo.toml +++ b/bindings/rust/evmc-vm/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "evmc-vm" -version = "9.0.0-alpha.1" +version = "9.0.0" authors = ["Alex Beregszaszi ", "Jake Lang "] license = "Apache-2.0" repository = "https://github.com/ethereum/evmc" @@ -12,4 +12,4 @@ description = "Bindings to EVMC (VM specific)" edition = "2018" [dependencies] -evmc-sys = { path = "../evmc-sys", version = "9.0.0-alpha.1" } +evmc-sys = { path = "../evmc-sys", version = "9.0.0" } diff --git a/examples/example-rust-vm/Cargo.toml b/examples/example-rust-vm/Cargo.toml index 98df4349f..fd53f9d5c 100644 --- a/examples/example-rust-vm/Cargo.toml +++ b/examples/example-rust-vm/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "example-rust-vm" -version = "9.0.0-alpha.1" +version = "9.0.0" authors = ["Alex Beregszaszi ", "Jake Lang "] edition = "2018" publish = false diff --git a/examples/example-rust-vm/src/lib.rs b/examples/example-rust-vm/src/lib.rs index 8e3e89a69..5d725d0e4 100644 --- a/examples/example-rust-vm/src/lib.rs +++ b/examples/example-rust-vm/src/lib.rs @@ -6,7 +6,7 @@ use evmc_declare::evmc_declare_vm; use evmc_vm::*; -#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "9.0.0-alpha.1")] +#[evmc_declare_vm("ExampleRustVM", "evm, precompiles", "9.0.0")] pub struct ExampleRustVM; impl EvmcVm for ExampleRustVM {