From 22401034afc71529e60510d517fccee54fec53f6 Mon Sep 17 00:00:00 2001 From: Grant Wuerker Date: Wed, 28 Apr 2021 19:20:07 -0600 Subject: [PATCH] Cutting new release --- Cargo.lock | 10 +++++----- Cargo.toml | 8 ++++---- analyzer/Cargo.toml | 6 +++--- common/Cargo.toml | 2 +- compiler/Cargo.toml | 8 ++++---- parser/Cargo.toml | 4 ++-- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4bb4aa1464..c29018f162 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -645,7 +645,7 @@ dependencies = [ [[package]] name = "fe" -version = "0.3.0-alpha" +version = "0.4.0-alpha" dependencies = [ "cargo-release", "clap", @@ -656,7 +656,7 @@ dependencies = [ [[package]] name = "fe-analyzer" -version = "0.3.0-alpha" +version = "0.4.0-alpha" dependencies = [ "ansi_term 0.12.1", "fe-common", @@ -671,7 +671,7 @@ dependencies = [ [[package]] name = "fe-common" -version = "0.3.0-alpha" +version = "0.4.0-alpha" dependencies = [ "codespan-reporting", "difference", @@ -683,7 +683,7 @@ dependencies = [ [[package]] name = "fe-compiler" -version = "0.3.0-alpha" +version = "0.4.0-alpha" dependencies = [ "ethabi", "evm", @@ -707,7 +707,7 @@ dependencies = [ [[package]] name = "fe-parser" -version = "0.3.0-alpha" +version = "0.4.0-alpha" dependencies = [ "fe-common", "insta", diff --git a/Cargo.toml b/Cargo.toml index 6584a6b24d..297e56f745 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe" -version = "0.3.0-alpha" +version = "0.4.0-alpha" authors = ["David Sanders "] edition = "2018" license = "Apache-2.0" @@ -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] diff --git a/analyzer/Cargo.toml b/analyzer/Cargo.toml index b060c2607a..1a73a488cb 100644 --- a/analyzer/Cargo.toml +++ b/analyzer/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "fe-analyzer" -version = "0.3.0-alpha" +version = "0.4.0-alpha" authors = ["Ethereum Foundation "] 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" diff --git a/common/Cargo.toml b/common/Cargo.toml index cb02082c04..e6f7f64080 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-common" -version = "0.3.0-alpha" +version = "0.4.0-alpha" authors = ["Ethereum Foundation "] edition = "2018" diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index 9d6c9d6180..7d52e763ae 100644 --- a/compiler/Cargo.toml +++ b/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-compiler" -version = "0.3.0-alpha" +version = "0.4.0-alpha" authors = ["Grant Wuerker "] edition = "2018" license = "Apache-2.0" @@ -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" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index d40850a8c0..773ffb5265 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe-parser" -version = "0.3.0-alpha" +version = "0.4.0-alpha" authors = ["David Sanders "] edition = "2018" license = "Apache-2.0" @@ -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"] }