Skip to content

Commit

Permalink
Cutting new release
Browse files Browse the repository at this point in the history
  • Loading branch information
cburgdorf committed Nov 3, 2023
1 parent e4d1d24 commit ca316a1
Show file tree
Hide file tree
Showing 17 changed files with 70 additions and 70 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/abi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fe-abi"
version = "0.25.0"
version = "0.26.0"
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.25.0"}
fe-common = { path = "../common", version = "^0.26.0"}
serde = { version = "1.0", features = ["derive"] }

[dev-dependencies]
Expand Down
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.25.0"
version = "0.26.0"
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.25.0"}
fe-parser = {path = "../parser", version = "^0.25.0"}
fe-library = {path = "../library", version = "^0.25.0"}
fe-common = {path = "../common", version = "^0.26.0"}
fe-parser = {path = "../parser", version = "^0.26.0"}
fe-library = {path = "../library", version = "^0.26.0"}
hex = "0.4"
num-bigint = "0.4.3"
num-traits = "0.2.14"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ source: crates/analyzer/tests/errors.rs
assertion_line: 259
expression: "error_string(&path, test_files::fixture(path))"
---
error: The current compiler version 0.25.0 doesn't match the specified requirement
error: The current compiler version 0.26.0 doesn't match the specified requirement
┌─ compile_errors/invalid_compiler_version.fe:1:8
1pragma <=0.1.0
^^^^^^^ The specified version requirement
= Note: Use `pragma 0.25.0` to make the code compile
= Note: Use `pragma 0.26.0` to make the code compile


10 changes: 5 additions & 5 deletions crates/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "fe-codegen"
version = "0.25.0"
version = "0.26.0"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"

[dependencies]
fe-analyzer = { path = "../analyzer", version = "^0.25.0"}
fe-mir = { path = "../mir", version = "^0.25.0"}
fe-common = { path = "../common", version = "^0.25.0"}
fe-abi = { path = "../abi", version = "^0.25.0"}
fe-analyzer = { path = "../analyzer", version = "^0.26.0"}
fe-mir = { path = "../mir", version = "^0.26.0"}
fe-common = { path = "../common", version = "^0.26.0"}
fe-abi = { path = "../abi", version = "^0.26.0"}
salsa = "0.16.1"
num-bigint = "0.4.3"
fxhash = "0.2.1"
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.25.0"
version = "0.26.0"
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.25.0"}
fe-library = {path = "../library", version = "^0.26.0"}
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.25.0"
version = "0.26.0"
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.25.0"}
fe-analyzer = {path = "../analyzer", version = "^0.25.0"}
fe-common = {path = "../common", version = "^0.25.0"}
fe-mir = {path = "../mir", version = "^0.25.0"}
fe-codegen = {path = "../codegen", version = "^0.25.0"}
fe-parser = {path = "../parser", version = "^0.25.0"}
fe-yulc = {path = "../yulc", version = "^0.25.0", features = ["solc-backend"], optional = true}
fe-test-runner = {path = "../test-runner", version = "^0.25.0"}
fe-abi = {path = "../abi", version = "^0.26.0"}
fe-analyzer = {path = "../analyzer", version = "^0.26.0"}
fe-common = {path = "../common", version = "^0.26.0"}
fe-mir = {path = "../mir", version = "^0.26.0"}
fe-codegen = {path = "../codegen", version = "^0.26.0"}
fe-parser = {path = "../parser", version = "^0.26.0"}
fe-yulc = {path = "../yulc", version = "^0.26.0", features = ["solc-backend"], optional = true}
fe-test-runner = {path = "../test-runner", version = "^0.26.0"}
indexmap = "1.6.2"
vfs = "0.5.1"
smol_str = "0.1.21"
Expand Down
10 changes: 5 additions & 5 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.25.0"
version = "0.26.0"

[features]
solc-backend = ["fe-driver/solc-backend"]
Expand All @@ -23,7 +23,7 @@ walkdir = "2"
indexmap = "1.6.2"
include_dir = "0.7.2"
colored = "2.0.0"
fe-test-runner = {path = "../test-runner", version = "^0.25.0"}
fe-common = {path = "../common", version = "^0.25.0"}
fe-driver = {path = "../driver", version = "^0.25.0"}
fe-parser = {path = "../parser", version = "^0.25.0"}
fe-test-runner = {path = "../test-runner", version = "^0.26.0"}
fe-common = {path = "../common", version = "^0.26.0"}
fe-driver = {path = "../driver", version = "^0.26.0"}
fe-parser = {path = "../parser", version = "^0.26.0"}
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.25.0"
version = "0.26.0"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
8 changes: 4 additions & 4 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.25.0"
version = "0.26.0"
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.25.0"}
fe-parser = { path = "../parser", version = "^0.25.0"}
fe-analyzer = { path = "../analyzer", version = "^0.25.0"}
fe-common = { path = "../common", version = "^0.26.0"}
fe-parser = { path = "../parser", version = "^0.26.0"}
fe-analyzer = { path = "../analyzer", version = "^0.26.0"}
salsa = "0.16.1"
smol_str = "0.1.21"
num-bigint = "0.4.3"
Expand Down
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.25.0"
version = "0.26.0"
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.25.0"}
fe-common = {path = "../common", version = "^0.26.0"}
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.25.0"}
fe-test-files = {path = "../test-files", version = "^0.26.0"}
insta = { default-features = false, version = "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.25.0"
version = "0.26.0"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/test-runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-test-runner"
version = "0.25.0"
version = "0.26.0"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "GPL-3.0-or-later"
Expand Down
10 changes: 5 additions & 5 deletions crates/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
name = "fe-compiler-test-utils"
version = "0.25.0"
version = "0.26.0"
license = "GPL-3.0-or-later"
repository = "https://github.com/ethereum/fe"

[dependencies]
ethabi = { default-features = false, features = ["full-serde"], version = "18.0" }
evm = { default-features = false, version = "0.37" }
evm-runtime = { default-features = false, version = "0.37" }
fe-common = {path = "../common", version = "^0.25.0"}
fe-driver = {path = "../driver", version = "^0.25.0"}
fe-yulc = {path = "../yulc", version = "^0.25.0", optional = true, features = ["solc-backend"]}
fe-analyzer = {path = "../analyzer", version = "^0.25.0"}
fe-common = {path = "../common", version = "^0.26.0"}
fe-driver = {path = "../driver", version = "^0.26.0"}
fe-yulc = {path = "../yulc", version = "^0.26.0", optional = true, features = ["solc-backend"]}
fe-analyzer = {path = "../analyzer", version = "^0.26.0"}
test-files = {path = "../test-files", package = "fe-test-files" }
hex = "0.4"
primitive-types = {version = "0.12", default-features = false, features = ["rlp"]}
Expand Down
12 changes: 6 additions & 6 deletions crates/tests-legacy/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-legacy"
version = "0.25.0"
version = "0.26.0"
license = "GPL-3.0-or-later"
repository = "https://github.com/ethereum/fe"

Expand All @@ -12,12 +12,12 @@ repository = "https://github.com/ethereum/fe"
ethabi = { default-features = false, version = "18.0" }
evm = { default-features = false, version = "0.37" }
evm-runtime = { default-features = false, version = "0.37" }
fe-analyzer = {path = "../analyzer", version = "^0.25.0"}
fe-common = {path = "../common", version = "^0.25.0"}
fe-analyzer = {path = "../analyzer", version = "^0.26.0"}
fe-common = {path = "../common", version = "^0.26.0"}
fe-compiler-test-utils = {path = "../test-utils" }
fe-parser = {path = "../parser", version = "^0.25.0"}
fe-yulc = {path = "../yulc", version = "^0.25.0"}
fe-driver = {path = "../driver", version = "^0.25.0"}
fe-parser = {path = "../parser", version = "^0.26.0"}
fe-yulc = {path = "../yulc", version = "^0.26.0"}
fe-driver = {path = "../driver", version = "^0.26.0"}
test-files = {path = "../test-files", package = "fe-test-files" }
hex = "0.4"
primitive-types = {version = "0.12", default-features = false, features = ["rlp"]}
Expand Down

0 comments on commit ca316a1

Please sign in to comment.