Skip to content

Commit ca316a1

Browse files
committed
Cutting new release
1 parent e4d1d24 commit ca316a1

File tree

17 files changed

+70
-70
lines changed

17 files changed

+70
-70
lines changed

Cargo.lock

+15-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/abi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "fe-abi"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/ethereum/fe"
88

99
[dependencies]
10-
fe-common = { path = "../common", version = "^0.25.0"}
10+
fe-common = { path = "../common", version = "^0.26.0"}
1111
serde = { version = "1.0", features = ["derive"] }
1212

1313
[dev-dependencies]

crates/analyzer/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "fe-analyzer"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/ethereum/fe"
88

99
[dependencies]
1010

11-
fe-common = {path = "../common", version = "^0.25.0"}
12-
fe-parser = {path = "../parser", version = "^0.25.0"}
13-
fe-library = {path = "../library", version = "^0.25.0"}
11+
fe-common = {path = "../common", version = "^0.26.0"}
12+
fe-parser = {path = "../parser", version = "^0.26.0"}
13+
fe-library = {path = "../library", version = "^0.26.0"}
1414
hex = "0.4"
1515
num-bigint = "0.4.3"
1616
num-traits = "0.2.14"

crates/analyzer/tests/snapshots/errors__invalid_compiler_version.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ source: crates/analyzer/tests/errors.rs
33
assertion_line: 259
44
expression: "error_string(&path, test_files::fixture(path))"
55
---
6-
error: The current compiler version 0.25.0 doesn't match the specified requirement
6+
error: The current compiler version 0.26.0 doesn't match the specified requirement
77
┌─ compile_errors/invalid_compiler_version.fe:1:8
88
99
1pragma <=0.1.0
1010
^^^^^^^ The specified version requirement
1111
12-
= Note: Use `pragma 0.25.0` to make the code compile
12+
= Note: Use `pragma 0.26.0` to make the code compile
1313

1414

crates/codegen/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "fe-codegen"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66

77
[dependencies]
8-
fe-analyzer = { path = "../analyzer", version = "^0.25.0"}
9-
fe-mir = { path = "../mir", version = "^0.25.0"}
10-
fe-common = { path = "../common", version = "^0.25.0"}
11-
fe-abi = { path = "../abi", version = "^0.25.0"}
8+
fe-analyzer = { path = "../analyzer", version = "^0.26.0"}
9+
fe-mir = { path = "../mir", version = "^0.26.0"}
10+
fe-common = { path = "../common", version = "^0.26.0"}
11+
fe-abi = { path = "../abi", version = "^0.26.0"}
1212
salsa = "0.16.1"
1313
num-bigint = "0.4.3"
1414
fxhash = "0.2.1"

crates/common/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "fe-common"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/ethereum/fe"
88

99
[dependencies]
10-
fe-library = {path = "../library", version = "^0.25.0"}
10+
fe-library = {path = "../library", version = "^0.26.0"}
1111
tiny-keccak = { version = "2.0", features = ["keccak"] }
1212
hex = "0.4"
1313
codespan-reporting = "0.11.1"

crates/driver/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-driver"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "GPL-3.0-or-later"
@@ -12,14 +12,14 @@ solc-backend = ["fe-yulc"]
1212

1313
[dependencies]
1414
serde_json = "1.0"
15-
fe-abi = {path = "../abi", version = "^0.25.0"}
16-
fe-analyzer = {path = "../analyzer", version = "^0.25.0"}
17-
fe-common = {path = "../common", version = "^0.25.0"}
18-
fe-mir = {path = "../mir", version = "^0.25.0"}
19-
fe-codegen = {path = "../codegen", version = "^0.25.0"}
20-
fe-parser = {path = "../parser", version = "^0.25.0"}
21-
fe-yulc = {path = "../yulc", version = "^0.25.0", features = ["solc-backend"], optional = true}
22-
fe-test-runner = {path = "../test-runner", version = "^0.25.0"}
15+
fe-abi = {path = "../abi", version = "^0.26.0"}
16+
fe-analyzer = {path = "../analyzer", version = "^0.26.0"}
17+
fe-common = {path = "../common", version = "^0.26.0"}
18+
fe-mir = {path = "../mir", version = "^0.26.0"}
19+
fe-codegen = {path = "../codegen", version = "^0.26.0"}
20+
fe-parser = {path = "../parser", version = "^0.26.0"}
21+
fe-yulc = {path = "../yulc", version = "^0.26.0", features = ["solc-backend"], optional = true}
22+
fe-test-runner = {path = "../test-runner", version = "^0.26.0"}
2323
indexmap = "1.6.2"
2424
vfs = "0.5.1"
2525
smol_str = "0.1.21"

crates/fe/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "GPL-3.0-or-later"
88
name = "fe"
99
readme = "README.md"
1010
repository = "https://github.com/ethereum/fe"
11-
version = "0.25.0"
11+
version = "0.26.0"
1212

1313
[features]
1414
solc-backend = ["fe-driver/solc-backend"]
@@ -23,7 +23,7 @@ walkdir = "2"
2323
indexmap = "1.6.2"
2424
include_dir = "0.7.2"
2525
colored = "2.0.0"
26-
fe-test-runner = {path = "../test-runner", version = "^0.25.0"}
27-
fe-common = {path = "../common", version = "^0.25.0"}
28-
fe-driver = {path = "../driver", version = "^0.25.0"}
29-
fe-parser = {path = "../parser", version = "^0.25.0"}
26+
fe-test-runner = {path = "../test-runner", version = "^0.26.0"}
27+
fe-common = {path = "../common", version = "^0.26.0"}
28+
fe-driver = {path = "../driver", version = "^0.26.0"}
29+
fe-parser = {path = "../parser", version = "^0.26.0"}

crates/library/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-library"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

crates/mir/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "fe-mir"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/ethereum/fe"
88

99
[dependencies]
10-
fe-common = { path = "../common", version = "^0.25.0"}
11-
fe-parser = { path = "../parser", version = "^0.25.0"}
12-
fe-analyzer = { path = "../analyzer", version = "^0.25.0"}
10+
fe-common = { path = "../common", version = "^0.26.0"}
11+
fe-parser = { path = "../parser", version = "^0.26.0"}
12+
fe-analyzer = { path = "../analyzer", version = "^0.26.0"}
1313
salsa = "0.16.1"
1414
smol_str = "0.1.21"
1515
num-bigint = "0.4.3"

crates/parser/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-parser"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -11,7 +11,7 @@ description = "Parser lib for Fe."
1111
crate-type = ["cdylib", "rlib"]
1212

1313
[dependencies]
14-
fe-common = {path = "../common", version = "^0.25.0"}
14+
fe-common = {path = "../common", version = "^0.26.0"}
1515
logos = { version = "0.12.0", default-features = false, features = ["export_derive"] }
1616
serde = { version = "1", features = ["derive"] }
1717
unescape = "0.1.0"
@@ -25,7 +25,7 @@ smol_str = "0.1.21"
2525
wasm-bindgen = "0.2"
2626

2727
[dev-dependencies]
28-
fe-test-files = {path = "../test-files", version = "^0.25.0"}
28+
fe-test-files = {path = "../test-files", version = "^0.26.0"}
2929
insta = { default-features = false, version = "1.7.1" }
3030
wasm-bindgen-test = "0.3"
3131
pretty_assertions = "1.0.0"

crates/test-files/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-test-files"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

crates/test-runner/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-test-runner"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "GPL-3.0-or-later"

crates/test-utils/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
authors = ["The Fe Developers <[email protected]>"]
33
edition = "2021"
44
name = "fe-compiler-test-utils"
5-
version = "0.25.0"
5+
version = "0.26.0"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/ethereum/fe"
88

99
[dependencies]
1010
ethabi = { default-features = false, features = ["full-serde"], version = "18.0" }
1111
evm = { default-features = false, version = "0.37" }
1212
evm-runtime = { default-features = false, version = "0.37" }
13-
fe-common = {path = "../common", version = "^0.25.0"}
14-
fe-driver = {path = "../driver", version = "^0.25.0"}
15-
fe-yulc = {path = "../yulc", version = "^0.25.0", optional = true, features = ["solc-backend"]}
16-
fe-analyzer = {path = "../analyzer", version = "^0.25.0"}
13+
fe-common = {path = "../common", version = "^0.26.0"}
14+
fe-driver = {path = "../driver", version = "^0.26.0"}
15+
fe-yulc = {path = "../yulc", version = "^0.26.0", optional = true, features = ["solc-backend"]}
16+
fe-analyzer = {path = "../analyzer", version = "^0.26.0"}
1717
test-files = {path = "../test-files", package = "fe-test-files" }
1818
hex = "0.4"
1919
primitive-types = {version = "0.12", default-features = false, features = ["rlp"]}

crates/tests-legacy/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["The Fe Developers <[email protected]>"]
33
edition = "2021"
44
name = "fe-compiler-tests-legacy"
5-
version = "0.25.0"
5+
version = "0.26.0"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/ethereum/fe"
88

@@ -12,12 +12,12 @@ repository = "https://github.com/ethereum/fe"
1212
ethabi = { default-features = false, version = "18.0" }
1313
evm = { default-features = false, version = "0.37" }
1414
evm-runtime = { default-features = false, version = "0.37" }
15-
fe-analyzer = {path = "../analyzer", version = "^0.25.0"}
16-
fe-common = {path = "../common", version = "^0.25.0"}
15+
fe-analyzer = {path = "../analyzer", version = "^0.26.0"}
16+
fe-common = {path = "../common", version = "^0.26.0"}
1717
fe-compiler-test-utils = {path = "../test-utils" }
18-
fe-parser = {path = "../parser", version = "^0.25.0"}
19-
fe-yulc = {path = "../yulc", version = "^0.25.0"}
20-
fe-driver = {path = "../driver", version = "^0.25.0"}
18+
fe-parser = {path = "../parser", version = "^0.26.0"}
19+
fe-yulc = {path = "../yulc", version = "^0.26.0"}
20+
fe-driver = {path = "../driver", version = "^0.26.0"}
2121
test-files = {path = "../test-files", package = "fe-test-files" }
2222
hex = "0.4"
2323
primitive-types = {version = "0.12", default-features = false, features = ["rlp"]}

0 commit comments

Comments
 (0)