Skip to content

Commit 724dae7

Browse files
committed
Cutting new release
1 parent 097af8a commit 724dae7

File tree

14 files changed

+65
-65
lines changed

14 files changed

+65
-65
lines changed

Cargo.lock

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

crates/abi/Cargo.toml

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

99
[dependencies]
10-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
12-
fe-analyzer = {path = "../analyzer", version = "^0.10.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.11.0-alpha"}
12+
fe-analyzer = {path = "../analyzer", version = "^0.11.0-alpha"}
1313
serde_json = "1.0"
1414
serde = "1.0"

crates/analyzer/Cargo.toml

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

99
[dependencies]
10-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.11.0-alpha"}
1212
hex = "0.4"
1313
num-bigint = "0.3.1"
1414
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
expression: "error_string(&path, &src)"
44

55
---
6-
error: The current compiler version 0.10.0-alpha doesn't match the specified requirement
6+
error: The current compiler version 0.11.0-alpha 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.10.0-alpha` to make the code compile
12+
= Note: Use `pragma 0.11.0-alpha` to make the code compile
1313

1414

crates/common/Cargo.toml

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

crates/driver/Cargo.toml

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

1313
[dependencies]
1414
serde_json = "1.0"
15-
fe-abi = {path = "../abi", version = "^0.10.0-alpha"}
16-
fe-analyzer = {path = "../analyzer", version = "^0.10.0-alpha"}
17-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
18-
fe-lowering = {path = "../lowering", version = "^0.10.0-alpha"}
19-
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
20-
fe-yulgen = {path = "../yulgen", version = "^0.10.0-alpha"}
21-
fe-yulc = {path = "../yulc", version = "^0.10.0-alpha", features = ["solc-backend"], optional = true}
15+
fe-abi = {path = "../abi", version = "^0.11.0-alpha"}
16+
fe-analyzer = {path = "../analyzer", version = "^0.11.0-alpha"}
17+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
18+
fe-lowering = {path = "../lowering", version = "^0.11.0-alpha"}
19+
fe-parser = {path = "../parser", version = "^0.11.0-alpha"}
20+
fe-yulgen = {path = "../yulgen", version = "^0.11.0-alpha"}
21+
fe-yulc = {path = "../yulc", version = "^0.11.0-alpha", features = ["solc-backend"], optional = true}
2222
indexmap = "1.6.2"

crates/fe/Cargo.toml

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

1313
[features]
1414
solc-backend = ["fe-driver/solc-backend"]
1515

1616
[dependencies]
1717
clap = "2.33.3"
1818
walkdir = "2"
19-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
20-
fe-driver = {path = "../driver", version = "^0.10.0-alpha"}
21-
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
19+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
20+
fe-driver = {path = "../driver", version = "^0.11.0-alpha"}
21+
fe-parser = {path = "../parser", version = "^0.11.0-alpha"}

crates/lowering/Cargo.toml

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

99
[dependencies]
10-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
12-
fe-analyzer = {path = "../analyzer", version = "^0.10.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.11.0-alpha"}
12+
fe-analyzer = {path = "../analyzer", version = "^0.11.0-alpha"}
1313
indexmap = "1.6.2"
1414
salsa = "0.16.1"
1515

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.10.0-alpha"
3+
version = "0.11.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2018"
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.10.0-alpha"}
14+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
1515
logos = { version = "0.11.4", default-features = false, features = ["export_derive"] }
1616
serde = { version = "1", features = ["derive"] }
1717
unescape = "0.1.0"
@@ -25,7 +25,7 @@ indenter = "0.3"
2525
wasm-bindgen = "0.2"
2626

2727
[dev-dependencies]
28-
fe-test-files = {path = "../test-files", version = "^0.10.0-alpha"}
28+
fe-test-files = {path = "../test-files", version = "^0.11.0-alpha"}
2929
insta = "1.7.1"
3030
wasm-bindgen-test = "0.3"
3131
pretty_assertions = "0.7.2"

crates/test-files/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-test-files"
3-
version = "0.10.0-alpha"
3+
version = "0.11.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -9,4 +9,4 @@ repository = "https://github.com/ethereum/fe"
99
[dependencies]
1010
include_dir = "0.6.0"
1111
walkdir = "2"
12-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
12+
fe-common = {path = "../common", version = "^0.11.0-alpha"}

crates/test-utils/Cargo.toml

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

99
[dependencies]
1010
ethabi = "14.0"
1111
evm = "0.26.0"
1212
evm-runtime = "0.26.0"
13-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
14-
fe-driver = {path = "../driver", version = "^0.10.0-alpha"}
15-
fe-yulgen = {path = "../yulgen", version = "^0.10.0-alpha"}
16-
fe-yulc = {path = "../yulc", version = "^0.10.0-alpha", optional = true, features = ["solc-backend"]}
17-
fe-analyzer = {path = "../analyzer", version = "^0.10.0-alpha"}
13+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
14+
fe-driver = {path = "../driver", version = "^0.11.0-alpha"}
15+
fe-yulgen = {path = "../yulgen", version = "^0.11.0-alpha"}
16+
fe-yulc = {path = "../yulc", version = "^0.11.0-alpha", optional = true, features = ["solc-backend"]}
17+
fe-analyzer = {path = "../analyzer", version = "^0.11.0-alpha"}
1818
test-files = {path = "../test-files", package = "fe-test-files" }
1919
hex = "0.4"
2020
primitive-types = {version = "0.9", default-features = false, features = ["rlp"]}

crates/tests/Cargo.toml

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

@@ -12,14 +12,14 @@ repository = "https://github.com/ethereum/fe"
1212
ethabi = "14.0"
1313
evm = "0.26.0"
1414
evm-runtime = "0.26.0"
15-
fe-analyzer = {path = "../analyzer", version = "^0.10.0-alpha"}
16-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
15+
fe-analyzer = {path = "../analyzer", version = "^0.11.0-alpha"}
16+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
1717
fe-compiler-test-utils = {path = "../test-utils" }
18-
fe-lowering = {path = "../lowering", version = "^0.10.0-alpha"}
19-
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
20-
fe-yulgen = {path = "../yulgen", version = "^0.10.0-alpha"}
21-
fe-yulc = {path = "../yulc", version = "^0.10.0-alpha"}
22-
fe-driver = {path = "../driver", version = "^0.10.0-alpha"}
18+
fe-lowering = {path = "../lowering", version = "^0.11.0-alpha"}
19+
fe-parser = {path = "../parser", version = "^0.11.0-alpha"}
20+
fe-yulgen = {path = "../yulgen", version = "^0.11.0-alpha"}
21+
fe-yulc = {path = "../yulc", version = "^0.11.0-alpha"}
22+
fe-driver = {path = "../driver", version = "^0.11.0-alpha"}
2323
test-files = {path = "../test-files", package = "fe-test-files" }
2424
hex = "0.4"
2525
primitive-types = {version = "0.9", default-features = false, features = ["rlp"]}

crates/yulc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "fe-yulc"
3-
version = "0.10.0-alpha"
3+
version = "0.11.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2018"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/ethereum/fe"
88

99
[dependencies]
10-
fe-yulgen = {path = "../yulgen", version = "^0.10.0-alpha"}
10+
fe-yulgen = {path = "../yulgen", version = "^0.11.0-alpha"}
1111
# This fork supports concurrent compilation, which is required for Rust tests.
1212
solc = { git = "https://github.com/g-r-a-n-t/solc-rust", optional = true}
1313
serde_json = "1.0"

crates/yulgen/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[package]
22
name = "fe-yulgen"
3-
version = "0.10.0-alpha"
3+
version = "0.11.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2018"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/ethereum/fe"
88

99
[dependencies]
10-
fe-abi = {path = "../abi", version = "^0.10.0-alpha"}
11-
fe-analyzer = {path = "../analyzer", version = "^0.10.0-alpha"}
12-
fe-lowering = {path = "../lowering", version = "^0.10.0-alpha"}
13-
fe-common = {path = "../common", version = "^0.10.0-alpha"}
14-
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
10+
fe-abi = {path = "../abi", version = "^0.11.0-alpha"}
11+
fe-analyzer = {path = "../analyzer", version = "^0.11.0-alpha"}
12+
fe-lowering = {path = "../lowering", version = "^0.11.0-alpha"}
13+
fe-common = {path = "../common", version = "^0.11.0-alpha"}
14+
fe-parser = {path = "../parser", version = "^0.11.0-alpha"}
1515
indexmap = "1.6.2"
1616
maplit = "1.0.2"
1717
num-bigint = "0.4.0"

0 commit comments

Comments
 (0)