diff --git a/Cargo.lock b/Cargo.lock index 167232455e..d7e7e1c243 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -579,7 +579,7 @@ dependencies = [ [[package]] name = "fe" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "clap 3.1.18", "fe-common", @@ -593,7 +593,7 @@ dependencies = [ [[package]] name = "fe-abi" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "fe-common", "serde", @@ -602,7 +602,7 @@ dependencies = [ [[package]] name = "fe-analyzer" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "criterion", "fe-common", @@ -629,7 +629,7 @@ dependencies = [ [[package]] name = "fe-codegen" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "fe-abi", "fe-analyzer", @@ -645,7 +645,7 @@ dependencies = [ [[package]] name = "fe-common" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "camino", "codespan-reporting", @@ -665,7 +665,7 @@ dependencies = [ [[package]] name = "fe-compiler-test-utils" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "ethabi", "evm", @@ -687,7 +687,7 @@ dependencies = [ [[package]] name = "fe-compiler-tests" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "ethabi", "evm", @@ -712,7 +712,7 @@ dependencies = [ [[package]] name = "fe-driver" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "fe-abi", "fe-analyzer", @@ -730,14 +730,14 @@ dependencies = [ [[package]] name = "fe-library" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "include_dir", ] [[package]] name = "fe-mir" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "dot2", "fe-analyzer", @@ -757,7 +757,7 @@ dependencies = [ [[package]] name = "fe-parser" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "criterion", "fe-common", @@ -778,7 +778,7 @@ dependencies = [ [[package]] name = "fe-test-files" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "fe-library", "include_dir", @@ -786,7 +786,7 @@ dependencies = [ [[package]] name = "fe-yulc" -version = "0.19.1-alpha" +version = "0.20.0-alpha" dependencies = [ "indexmap", "serde_json", diff --git a/crates/abi/Cargo.toml b/crates/abi/Cargo.toml index 19adfa58a4..3a79906090 100644 --- a/crates/abi/Cargo.toml +++ b/crates/abi/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "fe-abi" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/ethereum/fe" [dependencies] -fe-common = { path = "../common", version = "^0.19.1-alpha"} +fe-common = { path = "../common", version = "^0.20.0-alpha"} serde = { version = "1.0", features = ["derive"] } [dev-dependencies] diff --git a/crates/analyzer/Cargo.toml b/crates/analyzer/Cargo.toml index 597c136928..59b6ad7c09 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-analyzer" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" @@ -8,9 +8,9 @@ repository = "https://github.com/ethereum/fe" [dependencies] -fe-common = {path = "../common", version = "^0.19.1-alpha"} -fe-parser = {path = "../parser", version = "^0.19.1-alpha"} -fe-library = {path = "../library", version = "^0.19.1-alpha"} +fe-common = {path = "../common", version = "^0.20.0-alpha"} +fe-parser = {path = "../parser", version = "^0.20.0-alpha"} +fe-library = {path = "../library", version = "^0.20.0-alpha"} hex = "0.4" num-bigint = "0.4.3" num-traits = "0.2.14" diff --git a/crates/analyzer/tests/snapshots/errors__invalid_compiler_version.snap b/crates/analyzer/tests/snapshots/errors__invalid_compiler_version.snap index 9913a92304..6c09d7e0c6 100644 --- a/crates/analyzer/tests/snapshots/errors__invalid_compiler_version.snap +++ b/crates/analyzer/tests/snapshots/errors__invalid_compiler_version.snap @@ -3,12 +3,12 @@ source: crates/analyzer/tests/errors.rs expression: "error_string(&path, test_files::fixture(path))" --- -error: The current compiler version 0.19.1-alpha doesn't match the specified requirement +error: The current compiler version 0.20.0-alpha doesn't match the specified requirement ┌─ compile_errors/invalid_compiler_version.fe:1:8 │ 1 │ pragma <=0.1.0 │ ^^^^^^^ The specified version requirement │ - = Note: Use `pragma 0.19.1-alpha` to make the code compile + = Note: Use `pragma 0.20.0-alpha` to make the code compile diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index 1d41c30cea..9cb86aa9e9 100644 --- a/crates/codegen/Cargo.toml +++ b/crates/codegen/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "fe-codegen" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" [dependencies] -fe-analyzer = { path = "../analyzer", version = "^0.19.1-alpha"} -fe-mir = { path = "../mir", version = "^0.19.1-alpha"} -fe-common = { path = "../common", version = "^0.19.1-alpha"} -fe-abi = { path = "../abi", version = "^0.19.1-alpha"} +fe-analyzer = { path = "../analyzer", version = "^0.20.0-alpha"} +fe-mir = { path = "../mir", version = "^0.20.0-alpha"} +fe-common = { path = "../common", version = "^0.20.0-alpha"} +fe-abi = { path = "../abi", version = "^0.20.0-alpha"} salsa = "0.16.1" num-bigint = "0.4.3" fxhash = "0.2.1" diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 70d72cf996..e1c6eaf1b4 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "fe-common" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/ethereum/fe" [dependencies] -fe-library = {path = "../library", version = "^0.19.1-alpha"} +fe-library = {path = "../library", version = "^0.20.0-alpha"} tiny-keccak = { version = "2.0", features = ["keccak"] } hex = "0.4" codespan-reporting = "0.11.1" diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index c0e3a892eb..dd3fe1b342 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-driver" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "GPL-3.0-or-later" @@ -12,13 +12,13 @@ solc-backend = ["fe-yulc"] [dependencies] serde_json = "1.0" -fe-abi = {path = "../abi", version = "^0.19.1-alpha"} -fe-analyzer = {path = "../analyzer", version = "^0.19.1-alpha"} -fe-common = {path = "../common", version = "^0.19.1-alpha"} -fe-mir = {path = "../mir", version = "^0.19.1-alpha"} -fe-codegen = {path = "../codegen", version = "^0.19.1-alpha"} -fe-parser = {path = "../parser", version = "^0.19.1-alpha"} -fe-yulc = {path = "../yulc", version = "^0.19.1-alpha", features = ["solc-backend"], optional = true} +fe-abi = {path = "../abi", version = "^0.20.0-alpha"} +fe-analyzer = {path = "../analyzer", version = "^0.20.0-alpha"} +fe-common = {path = "../common", version = "^0.20.0-alpha"} +fe-mir = {path = "../mir", version = "^0.20.0-alpha"} +fe-codegen = {path = "../codegen", version = "^0.20.0-alpha"} +fe-parser = {path = "../parser", version = "^0.20.0-alpha"} +fe-yulc = {path = "../yulc", version = "^0.20.0-alpha", features = ["solc-backend"], optional = true} indexmap = "1.6.2" vfs = "0.5.1" smol_str = "0.1.21" diff --git a/crates/fe/Cargo.toml b/crates/fe/Cargo.toml index c58d1ccba2..2e6bfdb898 100644 --- a/crates/fe/Cargo.toml +++ b/crates/fe/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0-or-later" name = "fe" readme = "README.md" repository = "https://github.com/ethereum/fe" -version = "0.19.1-alpha" +version = "0.20.0-alpha" [features] solc-backend = ["fe-driver/solc-backend"] @@ -20,6 +20,6 @@ walkdir = "2" indexmap = "1.6.2" include_dir = "0.7.2" -fe-common = {path = "../common", version = "^0.19.1-alpha"} -fe-driver = {path = "../driver", version = "^0.19.1-alpha"} -fe-parser = {path = "../parser", version = "^0.19.1-alpha"} +fe-common = {path = "../common", version = "^0.20.0-alpha"} +fe-driver = {path = "../driver", version = "^0.20.0-alpha"} +fe-parser = {path = "../parser", version = "^0.20.0-alpha"} diff --git a/crates/library/Cargo.toml b/crates/library/Cargo.toml index 13db4b1764..e3fb96c6d8 100644 --- a/crates/library/Cargo.toml +++ b/crates/library/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-library" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" diff --git a/crates/mir/Cargo.toml b/crates/mir/Cargo.toml index 29e31f9617..f548e82b78 100644 --- a/crates/mir/Cargo.toml +++ b/crates/mir/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "fe-mir" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/ethereum/fe" [dependencies] -fe-common = { path = "../common", version = "^0.19.1-alpha"} -fe-parser = { path = "../parser", version = "^0.19.1-alpha"} -fe-analyzer = { path = "../analyzer", version = "^0.19.1-alpha"} +fe-common = { path = "../common", version = "^0.20.0-alpha"} +fe-parser = { path = "../parser", version = "^0.20.0-alpha"} +fe-analyzer = { path = "../analyzer", version = "^0.20.0-alpha"} salsa = "0.16.1" smol_str = "0.1.21" num-bigint = "0.4.3" diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index b831947fe3..992fc2293f 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-parser" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" @@ -11,7 +11,7 @@ description = "Parser lib for Fe." crate-type = ["cdylib", "rlib"] [dependencies] -fe-common = {path = "../common", version = "^0.19.1-alpha"} +fe-common = {path = "../common", version = "^0.20.0-alpha"} logos = { version = "0.12.0", default-features = false, features = ["export_derive"] } serde = { version = "1", features = ["derive"] } unescape = "0.1.0" @@ -25,7 +25,7 @@ smol_str = "0.1.21" wasm-bindgen = "0.2" [dev-dependencies] -fe-test-files = {path = "../test-files", version = "^0.19.1-alpha"} +fe-test-files = {path = "../test-files", version = "^0.20.0-alpha"} insta = "1.7.1" wasm-bindgen-test = "0.3" pretty_assertions = "1.0.0" diff --git a/crates/test-files/Cargo.toml b/crates/test-files/Cargo.toml index f2ec760532..7e2539a0b0 100644 --- a/crates/test-files/Cargo.toml +++ b/crates/test-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-test-files" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" diff --git a/crates/test-utils/Cargo.toml b/crates/test-utils/Cargo.toml index 8c90113b0e..0d9c662a2a 100644 --- a/crates/test-utils/Cargo.toml +++ b/crates/test-utils/Cargo.toml @@ -2,7 +2,7 @@ authors = ["The Fe Developers "] edition = "2021" name = "fe-compiler-test-utils" -version = "0.19.1-alpha" +version = "0.20.0-alpha" license = "GPL-3.0-or-later" repository = "https://github.com/ethereum/fe" @@ -10,10 +10,10 @@ repository = "https://github.com/ethereum/fe" ethabi = "17.0" evm = "0.35.0" evm-runtime = "0.35.0" -fe-common = {path = "../common", version = "^0.19.1-alpha"} -fe-driver = {path = "../driver", version = "^0.19.1-alpha"} -fe-yulc = {path = "../yulc", version = "^0.19.1-alpha", optional = true, features = ["solc-backend"]} -fe-analyzer = {path = "../analyzer", version = "^0.19.1-alpha"} +fe-common = {path = "../common", version = "^0.20.0-alpha"} +fe-driver = {path = "../driver", version = "^0.20.0-alpha"} +fe-yulc = {path = "../yulc", version = "^0.20.0-alpha", optional = true, features = ["solc-backend"]} +fe-analyzer = {path = "../analyzer", version = "^0.20.0-alpha"} test-files = {path = "../test-files", package = "fe-test-files" } hex = "0.4" primitive-types = {version = "0.11.1", default-features = false, features = ["rlp"]} diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index dca5818600..500015a5ed 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -2,7 +2,7 @@ authors = ["The Fe Developers "] edition = "2021" name = "fe-compiler-tests" -version = "0.19.1-alpha" +version = "0.20.0-alpha" license = "GPL-3.0-or-later" repository = "https://github.com/ethereum/fe" @@ -12,12 +12,12 @@ repository = "https://github.com/ethereum/fe" ethabi = "17.0" evm = "0.35.0" evm-runtime = "0.35.0" -fe-analyzer = {path = "../analyzer", version = "^0.19.1-alpha"} -fe-common = {path = "../common", version = "^0.19.1-alpha"} +fe-analyzer = {path = "../analyzer", version = "^0.20.0-alpha"} +fe-common = {path = "../common", version = "^0.20.0-alpha"} fe-compiler-test-utils = {path = "../test-utils" } -fe-parser = {path = "../parser", version = "^0.19.1-alpha"} -fe-yulc = {path = "../yulc", version = "^0.19.1-alpha"} -fe-driver = {path = "../driver", version = "^0.19.1-alpha"} +fe-parser = {path = "../parser", version = "^0.20.0-alpha"} +fe-yulc = {path = "../yulc", version = "^0.20.0-alpha"} +fe-driver = {path = "../driver", version = "^0.20.0-alpha"} test-files = {path = "../test-files", package = "fe-test-files" } hex = "0.4" primitive-types = {version = "0.11.1", default-features = false, features = ["rlp"]} diff --git a/crates/yulc/Cargo.toml b/crates/yulc/Cargo.toml index a201a2f3d6..c833823207 100644 --- a/crates/yulc/Cargo.toml +++ b/crates/yulc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-yulc" -version = "0.19.1-alpha" +version = "0.20.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "GPL-3.0-or-later"