Skip to content

Commit b61af04

Browse files
committed
Cutting new release
1 parent 138dd68 commit b61af04

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe"
3-
version = "0.1.0-alpha"
3+
version = "0.2.0-alpha"
44
authors = ["David Sanders <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -17,8 +17,8 @@ members = [".", "parser", "compiler"]
1717
solc-backend = ["fe-compiler/solc-backend"]
1818

1919
[dependencies]
20-
fe-parser = {path = "parser", version = "^0.1.0-alpha"}
21-
fe-compiler = {path = "compiler", version = "^0.1.0-alpha"}
20+
fe-parser = {path = "parser", version = "^0.2.0-alpha"}
21+
fe-compiler = {path = "compiler", version = "^0.2.0-alpha"}
2222
clap = "2.33.3"
2323

2424
[dev-dependencies]

analyzer/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "fe-analyzer"
3-
version = "0.1.0-alpha"
3+
version = "0.2.0-alpha"
44
authors = ["Ethereum Foundation <[email protected]>"]
55
edition = "2018"
66

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

99
[dependencies]
10-
fe-common = {path = "../common", version = "^0.1.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.1.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.2.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.2.0-alpha"}
1212
rstest = "0.6.4"
1313
tiny-keccak = { version = "2.0", features = ["keccak"] }
1414
hex = "0.4"

common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-common"
3-
version = "0.1.0-alpha"
3+
version = "0.2.0-alpha"
44
authors = ["Ethereum Foundation <[email protected]>"]
55
edition = "2018"
66

compiler/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-compiler"
3-
version = "0.1.0-alpha"
3+
version = "0.2.0-alpha"
44
authors = ["Grant Wuerker <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -12,9 +12,9 @@ description = "Compiler lib for the Fe language."
1212
solc-backend = ["solc"]
1313

1414
[dependencies]
15-
fe-common = {path = "../common", version = "^0.1.0-alpha"}
16-
fe-parser = {path = "../parser", version = "^0.1.0-alpha"}
17-
fe-analyzer = {path = "../analyzer", version = "^0.1.0-alpha"}
15+
fe-common = {path = "../common", version = "^0.2.0-alpha"}
16+
fe-parser = {path = "../parser", version = "^0.2.0-alpha"}
17+
fe-analyzer = {path = "../analyzer", version = "^0.2.0-alpha"}
1818
serde_json = "1.0"
1919
serde = "1.0"
2020
hex = "0.4"

parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-parser"
3-
version = "0.1.0-alpha"
3+
version = "0.2.0-alpha"
44
authors = ["David Sanders <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)