diff --git a/Cargo.lock b/Cargo.lock index 4fba960cdc..b1f7b2161e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -537,7 +537,7 @@ dependencies = [ [[package]] name = "fe" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "clap 3.2.23", "fe-common", @@ -551,7 +551,7 @@ dependencies = [ [[package]] name = "fe-abi" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "fe-common", "serde", @@ -560,7 +560,7 @@ dependencies = [ [[package]] name = "fe-analyzer" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "criterion", "fe-common", @@ -587,7 +587,7 @@ dependencies = [ [[package]] name = "fe-codegen" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "fe-abi", "fe-analyzer", @@ -603,7 +603,7 @@ dependencies = [ [[package]] name = "fe-common" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "camino", "codespan-reporting", @@ -623,7 +623,7 @@ dependencies = [ [[package]] name = "fe-compiler-test-utils" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "ethabi", "evm", @@ -645,7 +645,7 @@ dependencies = [ [[package]] name = "fe-compiler-tests" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "ethabi", "evm", @@ -670,7 +670,7 @@ dependencies = [ [[package]] name = "fe-driver" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "fe-abi", "fe-analyzer", @@ -688,14 +688,14 @@ dependencies = [ [[package]] name = "fe-library" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "include_dir", ] [[package]] name = "fe-mir" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "dot2", "fe-analyzer", @@ -715,7 +715,7 @@ dependencies = [ [[package]] name = "fe-parser" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "criterion", "fe-common", @@ -736,7 +736,7 @@ dependencies = [ [[package]] name = "fe-test-files" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "fe-library", "include_dir", @@ -744,7 +744,7 @@ dependencies = [ [[package]] name = "fe-yulc" -version = "0.20.0-alpha" +version = "0.21.0-alpha" dependencies = [ "indexmap", "serde_json", diff --git a/crates/abi/Cargo.toml b/crates/abi/Cargo.toml index 3a79906090..70198f925a 100644 --- a/crates/abi/Cargo.toml +++ b/crates/abi/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "fe-abi" -version = "0.20.0-alpha" +version = "0.21.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.20.0-alpha"} +fe-common = { path = "../common", version = "^0.21.0-alpha"} serde = { version = "1.0", features = ["derive"] } [dev-dependencies] diff --git a/crates/analyzer/Cargo.toml b/crates/analyzer/Cargo.toml index a2c50aac1c..47aacf5f01 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-analyzer" -version = "0.20.0-alpha" +version = "0.21.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.20.0-alpha"} -fe-parser = {path = "../parser", version = "^0.20.0-alpha"} -fe-library = {path = "../library", version = "^0.20.0-alpha"} +fe-common = {path = "../common", version = "^0.21.0-alpha"} +fe-parser = {path = "../parser", version = "^0.21.0-alpha"} +fe-library = {path = "../library", version = "^0.21.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 6c09d7e0c6..11ed38bebe 100644 --- a/crates/analyzer/tests/snapshots/errors__invalid_compiler_version.snap +++ b/crates/analyzer/tests/snapshots/errors__invalid_compiler_version.snap @@ -1,14 +1,14 @@ --- source: crates/analyzer/tests/errors.rs +assertion_line: 262 expression: "error_string(&path, test_files::fixture(path))" - --- -error: The current compiler version 0.20.0-alpha doesn't match the specified requirement +error: The current compiler version 0.21.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.20.0-alpha` to make the code compile + = Note: Use `pragma 0.21.0-alpha` to make the code compile diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index 9cb86aa9e9..1b11cbe7af 100644 --- a/crates/codegen/Cargo.toml +++ b/crates/codegen/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "fe-codegen" -version = "0.20.0-alpha" +version = "0.21.0-alpha" authors = ["The Fe Developers "] edition = "2021" [dependencies] -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"} +fe-analyzer = { path = "../analyzer", version = "^0.21.0-alpha"} +fe-mir = { path = "../mir", version = "^0.21.0-alpha"} +fe-common = { path = "../common", version = "^0.21.0-alpha"} +fe-abi = { path = "../abi", version = "^0.21.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 e1c6eaf1b4..0aad62aa6a 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "fe-common" -version = "0.20.0-alpha" +version = "0.21.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.20.0-alpha"} +fe-library = {path = "../library", version = "^0.21.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 dd3fe1b342..116b0ba447 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-driver" -version = "0.20.0-alpha" +version = "0.21.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.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} +fe-abi = {path = "../abi", version = "^0.21.0-alpha"} +fe-analyzer = {path = "../analyzer", version = "^0.21.0-alpha"} +fe-common = {path = "../common", version = "^0.21.0-alpha"} +fe-mir = {path = "../mir", version = "^0.21.0-alpha"} +fe-codegen = {path = "../codegen", version = "^0.21.0-alpha"} +fe-parser = {path = "../parser", version = "^0.21.0-alpha"} +fe-yulc = {path = "../yulc", version = "^0.21.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 2e6bfdb898..54fe8f49ad 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.20.0-alpha" +version = "0.21.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.20.0-alpha"} -fe-driver = {path = "../driver", version = "^0.20.0-alpha"} -fe-parser = {path = "../parser", version = "^0.20.0-alpha"} +fe-common = {path = "../common", version = "^0.21.0-alpha"} +fe-driver = {path = "../driver", version = "^0.21.0-alpha"} +fe-parser = {path = "../parser", version = "^0.21.0-alpha"} diff --git a/crates/library/Cargo.toml b/crates/library/Cargo.toml index e3fb96c6d8..825df550d7 100644 --- a/crates/library/Cargo.toml +++ b/crates/library/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-library" -version = "0.20.0-alpha" +version = "0.21.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 f548e82b78..7b44a16fba 100644 --- a/crates/mir/Cargo.toml +++ b/crates/mir/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "fe-mir" -version = "0.20.0-alpha" +version = "0.21.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.20.0-alpha"} -fe-parser = { path = "../parser", version = "^0.20.0-alpha"} -fe-analyzer = { path = "../analyzer", version = "^0.20.0-alpha"} +fe-common = { path = "../common", version = "^0.21.0-alpha"} +fe-parser = { path = "../parser", version = "^0.21.0-alpha"} +fe-analyzer = { path = "../analyzer", version = "^0.21.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 520e0f7b24..d607138240 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-parser" -version = "0.20.0-alpha" +version = "0.21.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.20.0-alpha"} +fe-common = {path = "../common", version = "^0.21.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.20.0-alpha"} +fe-test-files = {path = "../test-files", version = "^0.21.0-alpha"} insta = { default-features = false, version = "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 7e2539a0b0..c9aeaef650 100644 --- a/crates/test-files/Cargo.toml +++ b/crates/test-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-test-files" -version = "0.20.0-alpha" +version = "0.21.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 beceb82903..009db5f5a6 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.20.0-alpha" +version = "0.21.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 = { default-features = false, features = ["full-serde"], version = "18.0" } evm = { default-features = false, version = "0.37" } evm-runtime = { default-features = false, version = "0.37" } -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"} +fe-common = {path = "../common", version = "^0.21.0-alpha"} +fe-driver = {path = "../driver", version = "^0.21.0-alpha"} +fe-yulc = {path = "../yulc", version = "^0.21.0-alpha", optional = true, features = ["solc-backend"]} +fe-analyzer = {path = "../analyzer", version = "^0.21.0-alpha"} test-files = {path = "../test-files", package = "fe-test-files" } hex = "0.4" primitive-types = {version = "0.12", default-features = false, features = ["rlp"]} diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index b008d72d77..ad736e8691 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.20.0-alpha" +version = "0.21.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 = { default-features = false, version = "18.0" } evm = { default-features = false, version = "0.37" } evm-runtime = { default-features = false, version = "0.37" } -fe-analyzer = {path = "../analyzer", version = "^0.20.0-alpha"} -fe-common = {path = "../common", version = "^0.20.0-alpha"} +fe-analyzer = {path = "../analyzer", version = "^0.21.0-alpha"} +fe-common = {path = "../common", version = "^0.21.0-alpha"} fe-compiler-test-utils = {path = "../test-utils" } -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"} +fe-parser = {path = "../parser", version = "^0.21.0-alpha"} +fe-yulc = {path = "../yulc", version = "^0.21.0-alpha"} +fe-driver = {path = "../driver", version = "^0.21.0-alpha"} test-files = {path = "../test-files", package = "fe-test-files" } hex = "0.4" primitive-types = {version = "0.12", default-features = false, features = ["rlp"]} diff --git a/crates/yulc/Cargo.toml b/crates/yulc/Cargo.toml index fea21a11a1..3ae3635b38 100644 --- a/crates/yulc/Cargo.toml +++ b/crates/yulc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-yulc" -version = "0.20.0-alpha" +version = "0.21.0-alpha" authors = ["The Fe Developers "] edition = "2021" license = "GPL-3.0-or-later"