diff --git a/Cargo.lock b/Cargo.lock index 162c21577..90ded9167 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -740,7 +740,7 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "fe" -version = "0.25.0" +version = "0.26.0" dependencies = [ "clap 3.2.23", "colored", @@ -759,7 +759,7 @@ dependencies = [ [[package]] name = "fe-abi" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fe-common", "serde", @@ -768,7 +768,7 @@ dependencies = [ [[package]] name = "fe-analyzer" -version = "0.25.0" +version = "0.26.0" dependencies = [ "criterion", "fe-common", @@ -796,7 +796,7 @@ dependencies = [ [[package]] name = "fe-codegen" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fe-abi", "fe-analyzer", @@ -812,7 +812,7 @@ dependencies = [ [[package]] name = "fe-common" -version = "0.25.0" +version = "0.26.0" dependencies = [ "camino", "codespan-reporting", @@ -835,7 +835,7 @@ dependencies = [ [[package]] name = "fe-compiler-test-utils" -version = "0.25.0" +version = "0.26.0" dependencies = [ "ethabi", "evm", @@ -857,7 +857,7 @@ dependencies = [ [[package]] name = "fe-compiler-tests" -version = "0.25.0" +version = "0.26.0" dependencies = [ "dir-test", "fe-common", @@ -867,7 +867,7 @@ dependencies = [ [[package]] name = "fe-compiler-tests-legacy" -version = "0.25.0" +version = "0.26.0" dependencies = [ "dir-test", "ethabi", @@ -893,7 +893,7 @@ dependencies = [ [[package]] name = "fe-driver" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fe-abi", "fe-analyzer", @@ -912,7 +912,7 @@ dependencies = [ [[package]] name = "fe-library" -version = "0.25.0" +version = "0.26.0" dependencies = [ "include_dir", "indexmap 1.9.2", @@ -921,7 +921,7 @@ dependencies = [ [[package]] name = "fe-mir" -version = "0.25.0" +version = "0.26.0" dependencies = [ "dot2", "fe-analyzer", @@ -941,7 +941,7 @@ dependencies = [ [[package]] name = "fe-parser" -version = "0.25.0" +version = "0.26.0" dependencies = [ "criterion", "fe-common", @@ -962,7 +962,7 @@ dependencies = [ [[package]] name = "fe-test-files" -version = "0.25.0" +version = "0.26.0" dependencies = [ "fe-library", "include_dir", @@ -971,7 +971,7 @@ dependencies = [ [[package]] name = "fe-test-runner" -version = "0.25.0" +version = "0.26.0" dependencies = [ "bytes", "colored", @@ -984,7 +984,7 @@ dependencies = [ [[package]] name = "fe-yulc" -version = "0.25.0" +version = "0.26.0" dependencies = [ "indexmap 1.9.2", "serde_json", diff --git a/crates/abi/Cargo.toml b/crates/abi/Cargo.toml index e3c759254..d61f7466f 100644 --- a/crates/abi/Cargo.toml +++ b/crates/abi/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "fe-abi" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/ethereum/fe" [dependencies] -fe-common = { path = "../common", version = "^0.25.0"} +fe-common = { path = "../common", version = "^0.26.0"} serde = { version = "1.0", features = ["derive"] } [dev-dependencies] diff --git a/crates/analyzer/Cargo.toml b/crates/analyzer/Cargo.toml index 01e60e494..12ab3eea8 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-analyzer" -version = "0.25.0" +version = "0.26.0" 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.25.0"} -fe-parser = {path = "../parser", version = "^0.25.0"} -fe-library = {path = "../library", version = "^0.25.0"} +fe-common = {path = "../common", version = "^0.26.0"} +fe-parser = {path = "../parser", version = "^0.26.0"} +fe-library = {path = "../library", version = "^0.26.0"} 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 1edeaf03d..1413ee817 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 assertion_line: 259 expression: "error_string(&path, test_files::fixture(path))" --- -error: The current compiler version 0.25.0 doesn't match the specified requirement +error: The current compiler version 0.26.0 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.25.0` to make the code compile + = Note: Use `pragma 0.26.0` to make the code compile diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index 5da03d815..dc0bcb054 100644 --- a/crates/codegen/Cargo.toml +++ b/crates/codegen/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "fe-codegen" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" [dependencies] -fe-analyzer = { path = "../analyzer", version = "^0.25.0"} -fe-mir = { path = "../mir", version = "^0.25.0"} -fe-common = { path = "../common", version = "^0.25.0"} -fe-abi = { path = "../abi", version = "^0.25.0"} +fe-analyzer = { path = "../analyzer", version = "^0.26.0"} +fe-mir = { path = "../mir", version = "^0.26.0"} +fe-common = { path = "../common", version = "^0.26.0"} +fe-abi = { path = "../abi", version = "^0.26.0"} 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 d86377e5a..c1c48759a 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "fe-common" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/ethereum/fe" [dependencies] -fe-library = {path = "../library", version = "^0.25.0"} +fe-library = {path = "../library", version = "^0.26.0"} 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 363e664fd..0eb8f047c 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-driver" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" license = "GPL-3.0-or-later" @@ -12,14 +12,14 @@ solc-backend = ["fe-yulc"] [dependencies] serde_json = "1.0" -fe-abi = {path = "../abi", version = "^0.25.0"} -fe-analyzer = {path = "../analyzer", version = "^0.25.0"} -fe-common = {path = "../common", version = "^0.25.0"} -fe-mir = {path = "../mir", version = "^0.25.0"} -fe-codegen = {path = "../codegen", version = "^0.25.0"} -fe-parser = {path = "../parser", version = "^0.25.0"} -fe-yulc = {path = "../yulc", version = "^0.25.0", features = ["solc-backend"], optional = true} -fe-test-runner = {path = "../test-runner", version = "^0.25.0"} +fe-abi = {path = "../abi", version = "^0.26.0"} +fe-analyzer = {path = "../analyzer", version = "^0.26.0"} +fe-common = {path = "../common", version = "^0.26.0"} +fe-mir = {path = "../mir", version = "^0.26.0"} +fe-codegen = {path = "../codegen", version = "^0.26.0"} +fe-parser = {path = "../parser", version = "^0.26.0"} +fe-yulc = {path = "../yulc", version = "^0.26.0", features = ["solc-backend"], optional = true} +fe-test-runner = {path = "../test-runner", version = "^0.26.0"} 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 c463feb4e..4a3653866 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.25.0" +version = "0.26.0" [features] solc-backend = ["fe-driver/solc-backend"] @@ -23,7 +23,7 @@ walkdir = "2" indexmap = "1.6.2" include_dir = "0.7.2" colored = "2.0.0" -fe-test-runner = {path = "../test-runner", version = "^0.25.0"} -fe-common = {path = "../common", version = "^0.25.0"} -fe-driver = {path = "../driver", version = "^0.25.0"} -fe-parser = {path = "../parser", version = "^0.25.0"} +fe-test-runner = {path = "../test-runner", version = "^0.26.0"} +fe-common = {path = "../common", version = "^0.26.0"} +fe-driver = {path = "../driver", version = "^0.26.0"} +fe-parser = {path = "../parser", version = "^0.26.0"} diff --git a/crates/library/Cargo.toml b/crates/library/Cargo.toml index abc186a4a..587e7c7e8 100644 --- a/crates/library/Cargo.toml +++ b/crates/library/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-library" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" diff --git a/crates/mir/Cargo.toml b/crates/mir/Cargo.toml index e4e3b235e..b5193c871 100644 --- a/crates/mir/Cargo.toml +++ b/crates/mir/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "fe-mir" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/ethereum/fe" [dependencies] -fe-common = { path = "../common", version = "^0.25.0"} -fe-parser = { path = "../parser", version = "^0.25.0"} -fe-analyzer = { path = "../analyzer", version = "^0.25.0"} +fe-common = { path = "../common", version = "^0.26.0"} +fe-parser = { path = "../parser", version = "^0.26.0"} +fe-analyzer = { path = "../analyzer", version = "^0.26.0"} 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 05cc6cecc..ba35c26ef 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-parser" -version = "0.25.0" +version = "0.26.0" 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.25.0"} +fe-common = {path = "../common", version = "^0.26.0"} 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.25.0"} +fe-test-files = {path = "../test-files", version = "^0.26.0"} 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 5c043d666..215674cf7 100644 --- a/crates/test-files/Cargo.toml +++ b/crates/test-files/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-test-files" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" license = "Apache-2.0" diff --git a/crates/test-runner/Cargo.toml b/crates/test-runner/Cargo.toml index 57fe2f81e..6f183a0dc 100644 --- a/crates/test-runner/Cargo.toml +++ b/crates/test-runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-test-runner" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" license = "GPL-3.0-or-later" diff --git a/crates/test-utils/Cargo.toml b/crates/test-utils/Cargo.toml index 9ca0645ad..8e72c40b7 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.25.0" +version = "0.26.0" 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.25.0"} -fe-driver = {path = "../driver", version = "^0.25.0"} -fe-yulc = {path = "../yulc", version = "^0.25.0", optional = true, features = ["solc-backend"]} -fe-analyzer = {path = "../analyzer", version = "^0.25.0"} +fe-common = {path = "../common", version = "^0.26.0"} +fe-driver = {path = "../driver", version = "^0.26.0"} +fe-yulc = {path = "../yulc", version = "^0.26.0", optional = true, features = ["solc-backend"]} +fe-analyzer = {path = "../analyzer", version = "^0.26.0"} 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-legacy/Cargo.toml b/crates/tests-legacy/Cargo.toml index b6bd7ffab..d7367f0c5 100644 --- a/crates/tests-legacy/Cargo.toml +++ b/crates/tests-legacy/Cargo.toml @@ -2,7 +2,7 @@ authors = ["The Fe Developers "] edition = "2021" name = "fe-compiler-tests-legacy" -version = "0.25.0" +version = "0.26.0" 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.25.0"} -fe-common = {path = "../common", version = "^0.25.0"} +fe-analyzer = {path = "../analyzer", version = "^0.26.0"} +fe-common = {path = "../common", version = "^0.26.0"} fe-compiler-test-utils = {path = "../test-utils" } -fe-parser = {path = "../parser", version = "^0.25.0"} -fe-yulc = {path = "../yulc", version = "^0.25.0"} -fe-driver = {path = "../driver", version = "^0.25.0"} +fe-parser = {path = "../parser", version = "^0.26.0"} +fe-yulc = {path = "../yulc", version = "^0.26.0"} +fe-driver = {path = "../driver", version = "^0.26.0"} 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 de6f7a4a7..145339b1c 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -2,14 +2,14 @@ authors = ["The Fe Developers "] edition = "2021" name = "fe-compiler-tests" -version = "0.25.0" +version = "0.26.0" license = "GPL-3.0-or-later" repository = "https://github.com/ethereum/fe" [dependencies] -fe-test-runner = {path = "../test-runner", version = "^0.25.0"} -fe-driver = {path = "../driver", version = "^0.25.0"} -fe-common = {path = "../common", version = "^0.25.0"} +fe-test-runner = {path = "../test-runner", version = "^0.26.0"} +fe-driver = {path = "../driver", version = "^0.26.0"} +fe-common = {path = "../common", version = "^0.26.0"} dir-test = "^0.1" diff --git a/crates/yulc/Cargo.toml b/crates/yulc/Cargo.toml index 19bdb91a7..5c5ebbac4 100644 --- a/crates/yulc/Cargo.toml +++ b/crates/yulc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-yulc" -version = "0.25.0" +version = "0.26.0" authors = ["The Fe Developers "] edition = "2021" license = "GPL-3.0-or-later"