Skip to content

Commit 0b4f4cf

Browse files
committed
Cutting new release
1 parent 821c820 commit 0b4f4cf

File tree

13 files changed

+61
-61
lines changed

13 files changed

+61
-61
lines changed

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/abi/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "fe-abi"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
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.9.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.9.0-alpha"}
12-
fe-analyzer = {path = "../analyzer", version = "^0.9.0-alpha"}
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"}
1313
serde_json = "1.0"
1414
serde = "1.0"

crates/analyzer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "fe-analyzer"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
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.9.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.9.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.10.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
1212
hex = "0.4"
1313
num-bigint = "0.3.1"
1414
num-traits = "0.2.14"

crates/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-common"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
55
edition = "2018"
66
license = "Apache-2.0"

crates/driver/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-driver"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
55
edition = "2018"
66
license = "GPL-3.0-or-later"
@@ -12,10 +12,10 @@ solc-backend = ["fe-yulc"]
1212

1313
[dependencies]
1414
serde_json = "1.0"
15-
fe-abi = {path = "../abi", version = "^0.9.0-alpha"}
16-
fe-analyzer = {path = "../analyzer", version = "^0.9.0-alpha"}
17-
fe-common = {path = "../common", version = "^0.9.0-alpha"}
18-
fe-lowering = {path = "../lowering", version = "^0.9.0-alpha"}
19-
fe-parser = {path = "../parser", version = "^0.9.0-alpha"}
20-
fe-yulgen = {path = "../yulgen", version = "^0.9.0-alpha"}
21-
fe-yulc = {path = "../yulc", version = "^0.9.0-alpha", features = ["solc-backend"], optional = true}
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}

crates/fe/Cargo.toml

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

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

1616
[dependencies]
1717
clap = "2.33.3"
18-
fe-common = {path = "../common", version = "^0.9.0-alpha"}
19-
fe-driver = {path = "../driver", version = "^0.9.0-alpha"}
20-
fe-parser = {path = "../parser", version = "^0.9.0-alpha"}
18+
fe-common = {path = "../common", version = "^0.10.0-alpha"}
19+
fe-driver = {path = "../driver", version = "^0.10.0-alpha"}
20+
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}

crates/lowering/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "fe-lowering"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
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.9.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.9.0-alpha"}
12-
fe-analyzer = {path = "../analyzer", version = "^0.9.0-alpha"}
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"}
1313
indexmap = "1.6.2"
1414

1515
[dev-dependencies]

crates/parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-parser"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
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.9.0-alpha"}
14+
fe-common = {path = "../common", version = "^0.10.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.9.0-alpha"}
28+
fe-test-files = {path = "../test-files", version = "^0.10.0-alpha"}
2929
insta = "1.7.1"
3030
wasm-bindgen-test = "0.3"
3131
pretty_assertions = "0.7.2"

crates/test-files/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-test-files"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
55
edition = "2018"
66
license = "Apache-2.0"

crates/test-utils/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
33
edition = "2018"
44
name = "fe-compiler-test-utils"
5-
version = "0.9.0-alpha"
5+
version = "0.10.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.9.0-alpha"}
14-
fe-driver = {path = "../driver", version = "^0.9.0-alpha"}
15-
fe-yulgen = {path = "../yulgen", version = "^0.9.0-alpha"}
16-
fe-yulc = {path = "../yulc", version = "^0.9.0-alpha", optional = true, features = ["solc-backend"]}
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"]}
1717
test-files = {path = "../test-files", package = "fe-test-files" }
1818
hex = "0.4"
1919
primitive-types = {version = "0.9", default-features = false, features = ["rlp"]}

crates/tests/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
33
edition = "2018"
44
name = "fe-compiler-tests"
5-
version = "0.9.0-alpha"
5+
version = "0.10.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.9.0-alpha"}
16-
fe-common = {path = "../common", version = "^0.9.0-alpha"}
15+
fe-analyzer = {path = "../analyzer", version = "^0.10.0-alpha"}
16+
fe-common = {path = "../common", version = "^0.10.0-alpha"}
1717
fe-compiler-test-utils = {path = "../test-utils" }
18-
fe-lowering = {path = "../lowering", version = "^0.9.0-alpha"}
19-
fe-parser = {path = "../parser", version = "^0.9.0-alpha"}
20-
fe-yulgen = {path = "../yulgen", version = "^0.9.0-alpha"}
21-
fe-yulc = {path = "../yulc", version = "^0.9.0-alpha"}
22-
fe-driver = {path = "../driver", version = "^0.9.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"}
22+
fe-driver = {path = "../driver", version = "^0.10.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"]}
@@ -40,4 +40,4 @@ version = "1.0.0"
4040
# supported in Web Assembly.
4141
default-features = false
4242
# Enable using the `std` crate.
43-
features = ["std"]
43+
features = ["std"]

crates/yulc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "fe-yulc"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
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.9.0-alpha"}
10+
fe-yulgen = {path = "../yulgen", version = "^0.10.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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "fe-yulgen"
3-
version = "0.9.0-alpha"
3+
version = "0.10.0-alpha"
44
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
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.9.0-alpha"}
11-
fe-analyzer = {path = "../analyzer", version = "^0.9.0-alpha"}
12-
fe-common = {path = "../common", version = "^0.9.0-alpha"}
13-
fe-parser = {path = "../parser", version = "^0.9.0-alpha"}
10+
fe-abi = {path = "../abi", version = "^0.10.0-alpha"}
11+
fe-analyzer = {path = "../analyzer", version = "^0.10.0-alpha"}
12+
fe-common = {path = "../common", version = "^0.10.0-alpha"}
13+
fe-parser = {path = "../parser", version = "^0.10.0-alpha"}
1414
indexmap = "1.6.2"
1515
maplit = "1.0.2"
1616
num-bigint = "0.4.0"

0 commit comments

Comments
 (0)