Skip to content

Commit

Permalink
Cutting new release
Browse files Browse the repository at this point in the history
  • Loading branch information
g-r-a-n-t committed Mar 3, 2022
1 parent dcd3b58 commit b8e89bd
Show file tree
Hide file tree
Showing 15 changed files with 73 additions and 73 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions crates/abi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "fe-abi"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/ethereum/fe"

[dependencies]
fe-common = {path = "../common", version = "^0.13.0-alpha"}
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.13.0-alpha"}
fe-common = {path = "../common", version = "^0.14.0-alpha"}
fe-parser = {path = "../parser", version = "^0.14.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.14.0-alpha"}
serde_json = "1.0"
serde = "1.0"
8 changes: 4 additions & 4 deletions crates/analyzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "fe-analyzer"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/ethereum/fe"

[dependencies]

fe-common = {path = "../common", version = "^0.13.0-alpha"}
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
fe-library = {path = "../library", version = "^0.13.0-alpha"}
fe-common = {path = "../common", version = "^0.14.0-alpha"}
fe-parser = {path = "../parser", version = "^0.14.0-alpha"}
fe-library = {path = "../library", version = "^0.14.0-alpha"}
hex = "0.4"
num-bigint = "0.4.3"
num-traits = "0.2.14"
Expand Down
4 changes: 2 additions & 2 deletions crates/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fe-common"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/ethereum/fe"

[dependencies]
fe-library = {path = "../library", version = "^0.13.0-alpha"}
fe-library = {path = "../library", version = "^0.14.0-alpha"}
tiny-keccak = { version = "2.0", features = ["keccak"] }
hex = "0.4"
codespan-reporting = "0.11.1"
Expand Down
18 changes: 9 additions & 9 deletions crates/driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-driver"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "GPL-3.0-or-later"
Expand All @@ -12,14 +12,14 @@ solc-backend = ["fe-yulc"]

[dependencies]
serde_json = "1.0"
fe-abi = {path = "../abi", version = "^0.13.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.13.0-alpha"}
fe-common = {path = "../common", version = "^0.13.0-alpha"}
fe-lowering = {path = "../lowering", version = "^0.13.0-alpha"}
fe-mir = {path = "../mir", version = "^0.13.0-alpha"}
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
fe-yulgen = {path = "../yulgen", version = "^0.13.0-alpha"}
fe-yulc = {path = "../yulc", version = "^0.13.0-alpha", features = ["solc-backend"], optional = true}
fe-abi = {path = "../abi", version = "^0.14.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.14.0-alpha"}
fe-common = {path = "../common", version = "^0.14.0-alpha"}
fe-lowering = {path = "../lowering", version = "^0.14.0-alpha"}
fe-mir = {path = "../mir", version = "^0.14.0-alpha"}
fe-parser = {path = "../parser", version = "^0.14.0-alpha"}
fe-yulgen = {path = "../yulgen", version = "^0.14.0-alpha"}
fe-yulc = {path = "../yulc", version = "^0.14.0-alpha", features = ["solc-backend"], optional = true}
indexmap = "1.6.2"
vfs = "0.5.1"
smol_str = "0.1.21"
Expand Down
8 changes: 4 additions & 4 deletions crates/fe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "GPL-3.0-or-later"
name = "fe"
readme = "README.md"
repository = "https://github.com/ethereum/fe"
version = "0.13.0-alpha"
version = "0.14.0-alpha"

[features]
solc-backend = ["fe-driver/solc-backend"]
Expand All @@ -18,6 +18,6 @@ clap = "2.33.3"
walkdir = "2"
indexmap = "1.6.2"

fe-common = {path = "../common", version = "^0.13.0-alpha"}
fe-driver = {path = "../driver", version = "^0.13.0-alpha"}
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
fe-common = {path = "../common", version = "^0.14.0-alpha"}
fe-driver = {path = "../driver", version = "^0.14.0-alpha"}
fe-parser = {path = "../parser", version = "^0.14.0-alpha"}
2 changes: 1 addition & 1 deletion crates/library/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-library"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/lowering/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "fe-lowering"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/ethereum/fe"

[dependencies]
fe-common = {path = "../common", version = "^0.13.0-alpha"}
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.13.0-alpha"}
fe-common = {path = "../common", version = "^0.14.0-alpha"}
fe-parser = {path = "../parser", version = "^0.14.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.14.0-alpha"}
indexmap = "1.6.2"
salsa = "0.16.1"

Expand Down
10 changes: 5 additions & 5 deletions crates/mir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "fe-mir"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/ethereum/fe"

[dependencies]
fe-common = { path = "../common", version = "^0.13.0-alpha" }
fe-parser = { path = "../parser", version = "^0.13.0-alpha" }
fe-analyzer = { path = "../analyzer", version = "^0.13.0-alpha" }
fe-common = { path = "../common", version = "^0.14.0-alpha"}
fe-parser = { path = "../parser", version = "^0.14.0-alpha"}
fe-analyzer = { path = "../analyzer", version = "^0.14.0-alpha"}
salsa = "0.16.1"
smol_str = "0.1.21"
num-bigint = "0.4.3"
Expand All @@ -20,4 +20,4 @@ dot2 = "0.1.0"

[dev-dependencies]
test-files = { path = "../test-files", package = "fe-test-files" }
fe-library = { path = "../library" }
fe-library = { path = "../library" }
6 changes: 3 additions & 3 deletions crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-parser"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -11,7 +11,7 @@ description = "Parser lib for Fe."
crate-type = ["cdylib", "rlib"]

[dependencies]
fe-common = {path = "../common", version = "^0.13.0-alpha"}
fe-common = {path = "../common", version = "^0.14.0-alpha"}
logos = { version = "0.12.0", default-features = false, features = ["export_derive"] }
serde = { version = "1", features = ["derive"] }
unescape = "0.1.0"
Expand All @@ -25,7 +25,7 @@ smol_str = "0.1.21"
wasm-bindgen = "0.2"

[dev-dependencies]
fe-test-files = {path = "../test-files", version = "^0.13.0-alpha"}
fe-test-files = {path = "../test-files", version = "^0.14.0-alpha"}
insta = "1.7.1"
wasm-bindgen-test = "0.3"
pretty_assertions = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/test-files/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-test-files"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
12 changes: 6 additions & 6 deletions crates/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
name = "fe-compiler-test-utils"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
license = "GPL-3.0-or-later"
repository = "https://github.com/ethereum/fe"

[dependencies]
ethabi = "14.0"
evm = "0.26.0"
evm-runtime = "0.26.0"
fe-common = {path = "../common", version = "^0.13.0-alpha"}
fe-driver = {path = "../driver", version = "^0.13.0-alpha"}
fe-yulgen = {path = "../yulgen", version = "^0.13.0-alpha"}
fe-yulc = {path = "../yulc", version = "^0.13.0-alpha", optional = true, features = ["solc-backend"]}
fe-analyzer = {path = "../analyzer", version = "^0.13.0-alpha"}
fe-common = {path = "../common", version = "^0.14.0-alpha"}
fe-driver = {path = "../driver", version = "^0.14.0-alpha"}
fe-yulgen = {path = "../yulgen", version = "^0.14.0-alpha"}
fe-yulc = {path = "../yulc", version = "^0.14.0-alpha", optional = true, features = ["solc-backend"]}
fe-analyzer = {path = "../analyzer", version = "^0.14.0-alpha"}
test-files = {path = "../test-files", package = "fe-test-files" }
hex = "0.4"
primitive-types = {version = "0.9", default-features = false, features = ["rlp"]}
Expand Down
16 changes: 8 additions & 8 deletions crates/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
name = "fe-compiler-tests"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
license = "GPL-3.0-or-later"
repository = "https://github.com/ethereum/fe"

Expand All @@ -12,14 +12,14 @@ repository = "https://github.com/ethereum/fe"
ethabi = "14.0"
evm = "0.26.0"
evm-runtime = "0.26.0"
fe-analyzer = {path = "../analyzer", version = "^0.13.0-alpha"}
fe-common = {path = "../common", version = "^0.13.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.14.0-alpha"}
fe-common = {path = "../common", version = "^0.14.0-alpha"}
fe-compiler-test-utils = {path = "../test-utils" }
fe-lowering = {path = "../lowering", version = "^0.13.0-alpha"}
fe-parser = {path = "../parser", version = "^0.13.0-alpha"}
fe-yulgen = {path = "../yulgen", version = "^0.13.0-alpha"}
fe-yulc = {path = "../yulc", version = "^0.13.0-alpha"}
fe-driver = {path = "../driver", version = "^0.13.0-alpha"}
fe-lowering = {path = "../lowering", version = "^0.14.0-alpha"}
fe-parser = {path = "../parser", version = "^0.14.0-alpha"}
fe-yulgen = {path = "../yulgen", version = "^0.14.0-alpha"}
fe-yulc = {path = "../yulc", version = "^0.14.0-alpha"}
fe-driver = {path = "../driver", version = "^0.14.0-alpha"}
test-files = {path = "../test-files", package = "fe-test-files" }
hex = "0.4"
primitive-types = {version = "0.9", default-features = false, features = ["rlp"]}
Expand Down
4 changes: 2 additions & 2 deletions crates/yulc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fe-yulc"
version = "0.13.0-alpha"
version = "0.14.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://github.com/ethereum/fe"

[dependencies]
fe-yulgen = {path = "../yulgen", version = "^0.13.0-alpha"}
fe-yulgen = {path = "../yulgen", version = "^0.14.0-alpha"}
# This fork supports concurrent compilation, which is required for Rust tests.
solc = { git = "https://github.com/g-r-a-n-t/solc-rust", rev = "52d4146", optional = true}
serde_json = "1.0"
Expand Down
Loading

0 comments on commit b8e89bd

Please sign in to comment.