Skip to content

Commit d529b61

Browse files
committed
Cutting new release
1 parent b85d66d commit d529b61

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
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

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

1919
[dependencies]
20-
fe-common = {path = "common", version = "^0.4.0-alpha"}
21-
fe-parser = {path = "parser", version = "^0.4.0-alpha"}
22-
fe-compiler = {path = "compiler", version = "^0.4.0-alpha"}
20+
fe-common = {path = "common", version = "^0.5.0-alpha"}
21+
fe-parser = {path = "parser", version = "^0.5.0-alpha"}
22+
fe-compiler = {path = "compiler", version = "^0.5.0-alpha"}
2323
clap = "2.33.3"
2424

2525
[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.4.0-alpha"
3+
version = "0.5.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.4.0-alpha"}
11-
fe-parser = {path = "../parser", version = "^0.4.0-alpha"}
10+
fe-common = {path = "../common", version = "^0.5.0-alpha"}
11+
fe-parser = {path = "../parser", version = "^0.5.0-alpha"}
1212
hex = "0.4"
1313
ansi_term = "0.12.1"
1414
num-bigint = "0.3.1"

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.4.0-alpha"
3+
version = "0.5.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.4.0-alpha"
3+
version = "0.5.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.4.0-alpha"}
16-
fe-parser = {path = "../parser", version = "^0.4.0-alpha"}
17-
fe-analyzer = {path = "../analyzer", version = "^0.4.0-alpha"}
15+
fe-common = {path = "../common", version = "^0.5.0-alpha"}
16+
fe-parser = {path = "../parser", version = "^0.5.0-alpha"}
17+
fe-analyzer = {path = "../analyzer", version = "^0.5.0-alpha"}
1818
serde_json = "1.0"
1919
serde = "1.0"
2020
hex = "0.4"

parser/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fe-parser"
3-
version = "0.4.0-alpha"
3+
version = "0.5.0-alpha"
44
authors = ["David Sanders <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -11,7 +11,7 @@ description = "Parser lib for Fe."
1111
crate-type = ["cdylib", "rlib"]
1212

1313
[dependencies]
14-
fe-common = {path = "../common", version = "^0.4.0-alpha"}
14+
fe-common = {path = "../common", version = "^0.5.0-alpha"}
1515
logos = { version = "0.11.4", default-features = false, features = ["export_derive"] }
1616
serde = { version = "1", features = ["derive"] }
1717
unescape = "0.1.0"

0 commit comments

Comments
 (0)