Skip to content

Commit df7149e

Browse files
authored
Merge pull request #6 from Y-Nak/release
Prepare for release
2 parents f1598be + 71d26db commit df7149e

File tree

7 files changed

+58
-13
lines changed

7 files changed

+58
-13
lines changed

crates/codegen/Cargo.toml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
[package]
22
name = "sonatina-codegen"
3-
version = "0.1.0"
3+
version = "0.0.1-alpha"
44
edition = "2021"
5+
authors = ["Sonatina Developers"]
6+
license = "Apache-2.0"
7+
readme = "../../README.md"
8+
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/codegen"
9+
repository = "https://github.com/fe-lang/sonatina"
10+
description = "High-performance code generator for smart contract"
11+
categories = ["compilers", "wasm"]
12+
keywords = ["compiler", "evm", "wasm", "smart-contract"]
13+
514

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

@@ -10,5 +19,5 @@ primitive-types = "0.10"
1019
cranelift-entity = "0.77"
1120
smallvec = "1.7.0"
1221
fxhash = "0.2.1"
13-
sonatina-ir = { path = "../ir" }
14-
sonatina-triple = { path = "../triple" }
22+
sonatina-ir = { path = "../ir", version = "0.0.1-alpha" }
23+
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }

crates/filecheck/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "sonatina-filecheck"
3-
version = "0.1.0"
3+
version = "0.0.1-alpha"
44
edition = "2021"
5+
authors = ["Sonatina Developers"]
6+
license = "Apache-2.0"
7+
publish = false
58

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

crates/ir/Cargo.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
[package]
22
name = "sonatina-ir"
3-
version = "0.1.0"
3+
version = "0.0.1-alpha"
44
edition = "2021"
5+
authors = ["Sonatina Developers"]
6+
license = "Apache-2.0"
7+
readme = "../../README.md"
8+
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/ir"
9+
repository = "https://github.com/fe-lang/sonatina"
10+
description = "Intermediate representation for sonatina code generator"
11+
categories = ["compilers", "wasm"]
12+
keywords = ["compiler", "evm", "wasm", "smart-contract"]
513

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

@@ -11,5 +19,5 @@ cranelift-entity = "0.77"
1119
smallvec = "1.7.0"
1220
fxhash = "0.2.1"
1321
dyn-clone = "1.0.4"
14-
sonatina-triple = { path = "../triple" }
22+
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }
1523
indexmap = "1.9.1"

crates/object/Cargo.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
[package]
22
name = "sonatina-object"
3-
version = "0.1.0"
3+
version = "0.0.1-alpha"
44
edition = "2021"
5+
authors = ["Sonatina Developers"]
6+
license = "Apache-2.0"
7+
readme = "../../README.md"
8+
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/object"
9+
repository = "https://github.com/fe-lang/sonatina"
10+
description = "Object file for sonatina code generator"
11+
categories = ["compilers", "wasm"]
12+
keywords = ["compiler", "evm", "wasm", "smart-contract"]
513

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

crates/parser/Cargo.toml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
[package]
22
name = "sonatina-parser"
3-
version = "0.1.0"
3+
version = "0.0.1-alpha"
44
edition = "2021"
5+
authors = ["Sonatina Developers"]
6+
license = "Apache-2.0"
7+
readme = "../../README.md"
8+
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/parser"
9+
repository = "https://github.com/fe-lang/sonatina"
10+
description = "Parser for sonatina-ir text format"
11+
categories = ["compilers", "parser", "wasm"]
12+
keywords = ["compiler", "evm", "wasm", "smart-contract"]
513

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

816
[dependencies]
9-
sonatina-ir = { path = "../ir" }
10-
sonatina-triple = { path = "../triple" }
17+
sonatina-ir = { path = "../ir", version = "0.0.1-alpha" }
18+
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }
1119
smallvec = "1.7.0"
12-
cranelift-entity = "0.77"
20+
cranelift-entity = "0.77"

crates/triple/Cargo.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
[package]
22
name = "sonatina-triple"
3-
version = "0.1.0"
3+
version = "0.0.1-alpha"
44
edition = "2021"
5+
authors = ["Sonatina Developers"]
6+
license = "Apache-2.0"
7+
readme = "../../README.md"
8+
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/triple"
9+
repository = "https://github.com/fe-lang/sonatina"
10+
description = "Target triple for smart contract"
11+
categories = ["compilers", "wasm"]
12+
keywords = ["compiler", "evm", "wasm", "smart-contract"]
513

614

715
[dependencies]
8-
thiserror = "1.0"
16+
thiserror = "1.0"

release.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
allow-branch = ["main"]

0 commit comments

Comments
 (0)