Skip to content

Commit 5fc80b9

Browse files
committed
v0.0.2-alpha
1 parent b86722b commit 5fc80b9

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[workspace]
2-
members = ["crates/ir", "crates/codegen", "crates/object", "crates/parser", "crates/filecheck", "crates/triple"]
2+
members = ["crates/ir", "crates/codegen", "crates/object", "crates/parser", "crates/filecheck", "crates/triple"]

crates/codegen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sonatina-codegen"
3-
version = "0.0.1-alpha"
3+
version = "0.0.2-alpha"
44
edition = "2021"
55
authors = ["Sonatina Developers"]
66
license = "Apache-2.0"
@@ -19,5 +19,5 @@ primitive-types = "0.10"
1919
cranelift-entity = "0.77"
2020
smallvec = "1.7.0"
2121
fxhash = "0.2.1"
22-
sonatina-ir = { path = "../ir", version = "0.0.1-alpha" }
23-
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }
22+
sonatina-ir = { path = "../ir", version = "0.0.2-alpha" }
23+
sonatina-triple = { path = "../triple", version = "0.0.2-alpha" }

crates/filecheck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sonatina-filecheck"
3-
version = "0.0.1-alpha"
3+
version = "0.0.2-alpha"
44
edition = "2021"
55
authors = ["Sonatina Developers"]
66
license = "Apache-2.0"

crates/ir/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sonatina-ir"
3-
version = "0.0.1-alpha"
3+
version = "0.0.2-alpha"
44
edition = "2021"
55
authors = ["Sonatina Developers"]
66
license = "Apache-2.0"
@@ -19,5 +19,5 @@ cranelift-entity = "0.77"
1919
smallvec = "1.7.0"
2020
fxhash = "0.2.1"
2121
dyn-clone = "1.0.4"
22-
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }
22+
sonatina-triple = { path = "../triple", version = "0.0.2-alpha" }
2323
indexmap = "1.9.1"

crates/object/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sonatina-object"
3-
version = "0.0.1-alpha"
3+
version = "0.0.2-alpha"
44
edition = "2021"
55
authors = ["Sonatina Developers"]
66
license = "Apache-2.0"

crates/parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sonatina-parser"
3-
version = "0.0.1-alpha"
3+
version = "0.0.2-alpha"
44
edition = "2021"
55
authors = ["Sonatina Developers"]
66
license = "Apache-2.0"
@@ -14,7 +14,7 @@ keywords = ["compiler", "evm", "wasm", "smart-contract"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
sonatina-ir = { path = "../ir", version = "0.0.1-alpha" }
18-
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }
17+
sonatina-ir = { path = "../ir", version = "0.0.2-alpha" }
18+
sonatina-triple = { path = "../triple", version = "0.0.2-alpha" }
1919
smallvec = "1.7.0"
2020
cranelift-entity = "0.77"

crates/triple/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sonatina-triple"
3-
version = "0.0.1-alpha"
3+
version = "0.0.2-alpha"
44
edition = "2021"
55
authors = ["Sonatina Developers"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)