Skip to content

Commit dcd667d

Browse files
committed
Cutting new release
1 parent 2c06147 commit dcd667d

File tree

14 files changed

+66
-66
lines changed

14 files changed

+66
-66
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: 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.12.0-alpha"
3+
version = "0.13.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.12.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.12.0-alpha"}
12-
fe-analyzer = {path = "../analyzer", version = "^0.12.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.13.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
12+
fe-analyzer = {path = "../analyzer", version = "^0.13.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.12.0-alpha"
3+
version = "0.13.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.12.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.12.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.13.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
1212
hex = "0.4"
1313
num-bigint = "0.4.3"
1414
num-traits = "0.2.14"

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.12.0-alpha"
3+
version = "0.13.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.12.0-alpha"}
10+
fe-library = {path = "../library", version = "^0.13.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.12.0-alpha"
3+
version = "0.13.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2021"
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.12.0-alpha"}
16-
fe-analyzer = {path = "../analyzer", version = "^0.12.0-alpha"}
17-
fe-common = {path = "../common", version = "^0.12.0-alpha"}
18-
fe-lowering = {path = "../lowering", version = "^0.12.0-alpha"}
19-
fe-parser = {path = "../parser", version = "^0.12.0-alpha"}
20-
fe-yulgen = {path = "../yulgen", version = "^0.12.0-alpha"}
21-
fe-yulc = {path = "../yulc", version = "^0.12.0-alpha", features = ["solc-backend"], optional = true}
15+
fe-abi = {path = "../abi", version = "^0.13.0-alpha"}
16+
fe-analyzer = {path = "../analyzer", version = "^0.13.0-alpha"}
17+
fe-common = {path = "../common", version = "^0.13.0-alpha"}
18+
fe-lowering = {path = "../lowering", version = "^0.13.0-alpha"}
19+
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
20+
fe-yulgen = {path = "../yulgen", version = "^0.13.0-alpha"}
21+
fe-yulc = {path = "../yulc", version = "^0.13.0-alpha", features = ["solc-backend"], optional = true}
2222
indexmap = "1.6.2"

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.12.0-alpha"
11+
version = "0.13.0-alpha"
1212

1313
[features]
1414
solc-backend = ["fe-driver/solc-backend"]
@@ -17,6 +17,6 @@ solc-backend = ["fe-driver/solc-backend"]
1717
clap = "2.33.3"
1818
walkdir = "2"
1919
indexmap = "1.6.2"
20-
fe-common = {path = "../common", version = "^0.12.0-alpha"}
21-
fe-driver = {path = "../driver", version = "^0.12.0-alpha"}
22-
fe-parser = {path = "../parser", version = "^0.12.0-alpha"}
20+
fe-common = {path = "../common", version = "^0.13.0-alpha"}
21+
fe-driver = {path = "../driver", version = "^0.13.0-alpha"}
22+
fe-parser = {path = "../parser", version = "^0.13.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.12.0-alpha"
3+
version = "0.13.0-alpha"
44
authors = ["The Fe Developers <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"

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.12.0-alpha"
3+
version = "0.13.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.12.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.12.0-alpha"}
12-
fe-analyzer = {path = "../analyzer", version = "^0.12.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.13.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
12+
fe-analyzer = {path = "../analyzer", version = "^0.13.0-alpha"}
1313
indexmap = "1.6.2"
1414
salsa = "0.16.1"
1515

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.12.0-alpha"
3+
version = "0.13.0-alpha"
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.12.0-alpha"}
14+
fe-common = {path = "../common", version = "^0.13.0-alpha"}
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.12.0-alpha"}
28+
fe-test-files = {path = "../test-files", version = "^0.13.0-alpha"}
2929
insta = "1.7.1"
3030
wasm-bindgen-test = "0.3"
3131
pretty_assertions = "1.0.0"

crates/test-files/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "fe-test-files"
3-
version = "0.12.0-alpha"
3+
version = "0.13.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
include_dir = "0.7.2"
11-
fe-common = {path = "../common", version = "^0.12.0-alpha"}
11+
fe-common = {path = "../common", version = "^0.13.0-alpha"}

0 commit comments

Comments
 (0)