Skip to content

Commit

Permalink
Cutting new release
Browse files Browse the repository at this point in the history
  • Loading branch information
cburgdorf committed Jan 20, 2021
1 parent aef17f3 commit 14507dd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe"
version = "0.0.1"
version = "0.1.0-alpha"
authors = ["David Sanders <david@ethereum.org>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -17,8 +17,8 @@ members = [".", "parser", "compiler"]
solc-backend = ["fe-compiler/solc-backend"]

[dependencies]
fe-parser = {path = "parser", version = "0.0.1"}
fe-compiler = {path = "compiler", version = "0.0.1"}
fe-parser = {path = "parser", version = "^0.1.0-alpha"}
fe-compiler = {path = "compiler", version = "^0.1.0-alpha"}
clap = "2.33.3"

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

[dependencies]
fe-parser = {path = "../parser", version = "0.0.1"}
fe-semantics = {path = "../semantics", version = "0.0.1"}
fe-parser = {path = "../parser", version = "^0.1.0-alpha"}
fe-semantics = {path = "../semantics", version = "^0.1.0-alpha"}
serde_json = "1.0"
serde = "1.0"
hex = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fe-parser"
version = "0.0.1"
version = "0.1.0-alpha"
authors = ["David Sanders <david@ethereum.org>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions semantics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fe-semantics"
version = "0.0.1"
version = "0.1.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-parser = {path = "../parser", version = "0.0.1"}
fe-parser = {path = "../parser", version = "^0.1.0-alpha"}
rstest = "0.6.4"
tiny-keccak = { version = "2.0", features = ["keccak"] }
hex = "0.4"
Expand Down

0 comments on commit 14507dd

Please sign in to comment.