Skip to content

Commit b92ffb9

Browse files
committed
Cutting new release
1 parent 7f2e04f commit b92ffb9

File tree

15 files changed

+62
-62
lines changed

15 files changed

+62
-62
lines changed

Cargo.lock

Lines changed: 13 additions & 13 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "fe-abi"
3-
version = "0.16.0-alpha"
3+
version = "0.17.0-alpha"
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.16.0-alpha" }
10+
fe-common = { path = "../common", version = "^0.17.0-alpha"}
1111
serde = { version = "1.0", features = ["derive"] }
1212

1313
[dev-dependencies]

crates/analyzer/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "fe-analyzer"
3-
version = "0.16.0-alpha"
3+
version = "0.17.0-alpha"
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.16.0-alpha"}
12-
fe-parser = {path = "../parser", version = "^0.16.0-alpha"}
13-
fe-library = {path = "../library", version = "^0.16.0-alpha"}
11+
fe-common = {path = "../common", version = "^0.17.0-alpha"}
12+
fe-parser = {path = "../parser", version = "^0.17.0-alpha"}
13+
fe-library = {path = "../library", version = "^0.17.0-alpha"}
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ source: crates/analyzer/tests/errors.rs
33
expression: "error_string(&path, test_files::fixture(path))"
44

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

1414

crates/codegen/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "fe-codegen"
3-
version = "0.16.0-alpha"
3+
version = "0.17.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66

77
[dependencies]
8-
fe-analyzer = { path = "../analyzer", version = "^0.16.0-alpha"}
9-
fe-mir = { path = "../mir", version = "^0.16.0-alpha" }
10-
fe-common = { path = "../common", version = "^0.16.0-alpha" }
11-
fe-abi = { path = "../abi", version = "^0.16.0-alpha" }
8+
fe-analyzer = { path = "../analyzer", version = "^0.17.0-alpha"}
9+
fe-mir = { path = "../mir", version = "^0.17.0-alpha"}
10+
fe-common = { path = "../common", version = "^0.17.0-alpha"}
11+
fe-abi = { path = "../abi", version = "^0.17.0-alpha"}
1212
salsa = "0.16.1"
1313
num-bigint = "0.4.3"
1414
fxhash = "0.2.1"
1515
smol_str = "0.1.21"
16-
yultsur = { git = "https://github.com/g-r-a-n-t/yultsur", rev = "ae85470" }
16+
yultsur = { git = "https://github.com/g-r-a-n-t/yultsur", rev = "ae85470" }

crates/common/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-common"
3-
version = "0.16.0-alpha"
3+
version = "0.17.0-alpha"
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.16.0-alpha"}
10+
fe-library = {path = "../library", version = "^0.17.0-alpha"}
1111
tiny-keccak = { version = "2.0", features = ["keccak"] }
1212
hex = "0.4"
1313
codespan-reporting = "0.11.1"

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.16.0-alpha"
3+
version = "0.17.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "GPL-3.0-or-later"
@@ -12,13 +12,13 @@ solc-backend = ["fe-yulc"]
1212

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

crates/fe/Cargo.toml

Lines changed: 4 additions & 4 deletions
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.16.0-alpha"
11+
version = "0.17.0-alpha"
1212

1313
[features]
1414
solc-backend = ["fe-driver/solc-backend"]
@@ -18,6 +18,6 @@ clap = "2.33.3"
1818
walkdir = "2"
1919
indexmap = "1.6.2"
2020

21-
fe-common = {path = "../common", version = "^0.16.0-alpha"}
22-
fe-driver = {path = "../driver", version = "^0.16.0-alpha"}
23-
fe-parser = {path = "../parser", version = "^0.16.0-alpha"}
21+
fe-common = {path = "../common", version = "^0.17.0-alpha"}
22+
fe-driver = {path = "../driver", version = "^0.17.0-alpha"}
23+
fe-parser = {path = "../parser", version = "^0.17.0-alpha"}

crates/library/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-library"
3-
version = "0.16.0-alpha"
3+
version = "0.17.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

crates/mir/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-mir"
3-
version = "0.16.0-alpha"
3+
version = "0.17.0-alpha"
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.16.0-alpha"}
11-
fe-parser = { path = "../parser", version = "^0.16.0-alpha"}
12-
fe-analyzer = { path = "../analyzer", version = "^0.16.0-alpha"}
10+
fe-common = { path = "../common", version = "^0.17.0-alpha"}
11+
fe-parser = { path = "../parser", version = "^0.17.0-alpha"}
12+
fe-analyzer = { path = "../analyzer", version = "^0.17.0-alpha"}
1313
salsa = "0.16.1"
1414
smol_str = "0.1.21"
1515
num-bigint = "0.4.3"

0 commit comments

Comments
 (0)