From 5fc80b9b2c23fa98f7915fdd1ebe179ba2e22194 Mon Sep 17 00:00:00 2001 From: Yoshitomo Nakanishi Date: Thu, 10 Nov 2022 01:09:37 +0100 Subject: [PATCH] v0.0.2-alpha --- Cargo.toml | 2 +- crates/codegen/Cargo.toml | 6 +++--- crates/filecheck/Cargo.toml | 2 +- crates/ir/Cargo.toml | 4 ++-- crates/object/Cargo.toml | 2 +- crates/parser/Cargo.toml | 6 +++--- crates/triple/Cargo.toml | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b23c06dc..492fefe7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,2 @@ [workspace] -members = ["crates/ir", "crates/codegen", "crates/object", "crates/parser", "crates/filecheck", "crates/triple"] \ No newline at end of file +members = ["crates/ir", "crates/codegen", "crates/object", "crates/parser", "crates/filecheck", "crates/triple"] diff --git a/crates/codegen/Cargo.toml b/crates/codegen/Cargo.toml index 116484a8..8c140da7 100644 --- a/crates/codegen/Cargo.toml +++ b/crates/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonatina-codegen" -version = "0.0.1-alpha" +version = "0.0.2-alpha" edition = "2021" authors = ["Sonatina Developers"] license = "Apache-2.0" @@ -19,5 +19,5 @@ primitive-types = "0.10" cranelift-entity = "0.77" smallvec = "1.7.0" fxhash = "0.2.1" -sonatina-ir = { path = "../ir", version = "0.0.1-alpha" } -sonatina-triple = { path = "../triple", version = "0.0.1-alpha" } +sonatina-ir = { path = "../ir", version = "0.0.2-alpha" } +sonatina-triple = { path = "../triple", version = "0.0.2-alpha" } diff --git a/crates/filecheck/Cargo.toml b/crates/filecheck/Cargo.toml index 5b8f1e0d..f1cf4f33 100644 --- a/crates/filecheck/Cargo.toml +++ b/crates/filecheck/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonatina-filecheck" -version = "0.0.1-alpha" +version = "0.0.2-alpha" edition = "2021" authors = ["Sonatina Developers"] license = "Apache-2.0" diff --git a/crates/ir/Cargo.toml b/crates/ir/Cargo.toml index b78929ba..2191ce2a 100644 --- a/crates/ir/Cargo.toml +++ b/crates/ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonatina-ir" -version = "0.0.1-alpha" +version = "0.0.2-alpha" edition = "2021" authors = ["Sonatina Developers"] license = "Apache-2.0" @@ -19,5 +19,5 @@ cranelift-entity = "0.77" smallvec = "1.7.0" fxhash = "0.2.1" dyn-clone = "1.0.4" -sonatina-triple = { path = "../triple", version = "0.0.1-alpha" } +sonatina-triple = { path = "../triple", version = "0.0.2-alpha" } indexmap = "1.9.1" diff --git a/crates/object/Cargo.toml b/crates/object/Cargo.toml index a6505261..893f14ed 100644 --- a/crates/object/Cargo.toml +++ b/crates/object/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonatina-object" -version = "0.0.1-alpha" +version = "0.0.2-alpha" edition = "2021" authors = ["Sonatina Developers"] license = "Apache-2.0" diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index a18764ca..b6675c42 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonatina-parser" -version = "0.0.1-alpha" +version = "0.0.2-alpha" edition = "2021" authors = ["Sonatina Developers"] license = "Apache-2.0" @@ -14,7 +14,7 @@ keywords = ["compiler", "evm", "wasm", "smart-contract"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -sonatina-ir = { path = "../ir", version = "0.0.1-alpha" } -sonatina-triple = { path = "../triple", version = "0.0.1-alpha" } +sonatina-ir = { path = "../ir", version = "0.0.2-alpha" } +sonatina-triple = { path = "../triple", version = "0.0.2-alpha" } smallvec = "1.7.0" cranelift-entity = "0.77" diff --git a/crates/triple/Cargo.toml b/crates/triple/Cargo.toml index 45a8e952..2f974c03 100644 --- a/crates/triple/Cargo.toml +++ b/crates/triple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonatina-triple" -version = "0.0.1-alpha" +version = "0.0.2-alpha" edition = "2021" authors = ["Sonatina Developers"] license = "Apache-2.0"