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 Apr 29, 2021
1 parent eeb1f48 commit 2240103
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe"
version = "0.3.0-alpha"
version = "0.4.0-alpha"
authors = ["David Sanders <david@ethereum.org>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -17,9 +17,9 @@ members = [".", "parser", "compiler"]
solc-backend = ["fe-compiler/solc-backend"]

[dependencies]
fe-common = {path = "common", version = "^0.3.0-alpha"}
fe-parser = {path = "parser", version = "^0.3.0-alpha"}
fe-compiler = {path = "compiler", version = "^0.3.0-alpha"}
fe-common = {path = "common", version = "^0.4.0-alpha"}
fe-parser = {path = "parser", version = "^0.4.0-alpha"}
fe-compiler = {path = "compiler", version = "^0.4.0-alpha"}
clap = "2.33.3"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions analyzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "fe-analyzer"
version = "0.3.0-alpha"
version = "0.4.0-alpha"
authors = ["Ethereum Foundation <snakecharmers@ethereum.org>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fe-common = {path = "../common", version = "^0.3.0-alpha"}
fe-parser = {path = "../parser", version = "^0.3.0-alpha"}
fe-common = {path = "../common", version = "^0.4.0-alpha"}
fe-parser = {path = "../parser", version = "^0.4.0-alpha"}
rstest = "0.6.4"
tiny-keccak = { version = "2.0", features = ["keccak"] }
hex = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-common"
version = "0.3.0-alpha"
version = "0.4.0-alpha"
authors = ["Ethereum Foundation <snakecharmers@ethereum.org>"]
edition = "2018"

Expand Down
8 changes: 4 additions & 4 deletions compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-compiler"
version = "0.3.0-alpha"
version = "0.4.0-alpha"
authors = ["Grant Wuerker <gwuerker@gmail.com>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -12,9 +12,9 @@ description = "Compiler lib for the Fe language."
solc-backend = ["solc"]

[dependencies]
fe-common = {path = "../common", version = "^0.3.0-alpha"}
fe-parser = {path = "../parser", version = "^0.3.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.3.0-alpha"}
fe-common = {path = "../common", version = "^0.4.0-alpha"}
fe-parser = {path = "../parser", version = "^0.4.0-alpha"}
fe-analyzer = {path = "../analyzer", version = "^0.4.0-alpha"}
serde_json = "1.0"
serde = "1.0"
hex = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-parser"
version = "0.3.0-alpha"
version = "0.4.0-alpha"
authors = ["David Sanders <david@ethereum.org>"]
edition = "2018"
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.3.0-alpha"}
fe-common = {path = "../common", version = "^0.4.0-alpha"}
logos = { version = "0.11.4", default-features = false, features = ["export_derive"] }
regex = "1"
serde = { version = "1", features = ["derive"] }
Expand Down

0 comments on commit 2240103

Please sign in to comment.