Skip to content

Commit e60a635

Browse files
committed
release
1 parent 3db5f37 commit e60a635

File tree

11 files changed

+40
-40
lines changed

11 files changed

+40
-40
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/edlang/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edlang"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "A experimental language using LLVM."
66
edition = "2021"
@@ -14,4 +14,4 @@ repository = "https://github.com/edg-l/edlang"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
edlang_driver = { version = "0.0.1-alpha.10", path = "../../lib/edlang_driver" }
17+
edlang_driver = { version = "0.0.1-alpha.11", path = "../../lib/edlang_driver" }

lib/edlang_ast/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edlang_ast"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "edlang AST"
66
edition = "2021"
@@ -13,4 +13,4 @@ repository = "https://github.com/edg-l/edlang"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
edlang_span = { version = "0.0.1-alpha.10", path = "../edlang_span" }
16+
edlang_span = { version = "0.0.1-alpha.11", path = "../edlang_span" }

lib/edlang_check/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edlang_check"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "edlang check"
66
edition = "2021"
@@ -14,7 +14,7 @@ repository = "https://github.com/edg-l/edlang"
1414

1515
[dependencies]
1616
ariadne = { version = "0.4.0", features = ["auto-color"] }
17-
edlang_ast = { version = "0.0.1-alpha.10", path = "../edlang_ast" }
18-
edlang_lowering = { version = "0.0.1-alpha.10", path = "../edlang_lowering" }
19-
edlang_session = { version = "0.0.1-alpha.10", path = "../edlang_session" }
17+
edlang_ast = { version = "0.0.1-alpha.11", path = "../edlang_ast" }
18+
edlang_lowering = { version = "0.0.1-alpha.11", path = "../edlang_lowering" }
19+
edlang_session = { version = "0.0.1-alpha.11", path = "../edlang_session" }
2020
tracing = { workspace = true }

lib/edlang_codegen_llvm/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edlang_codegen_llvm"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "edlang LLVM codegen"
66
edition = "2021"
@@ -13,10 +13,10 @@ repository = "https://github.com/edg-l/edlang"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
edlang_ir = { version = "0.0.1-alpha.10", path = "../edlang_ir" }
17-
edlang_parser = { version = "0.0.1-alpha.10", path = "../edlang_parser" }
18-
edlang_session = { version = "0.0.1-alpha.10", path = "../edlang_session" }
16+
edlang_ir = { version = "0.0.1-alpha.11", path = "../edlang_ir" }
17+
edlang_parser = { version = "0.0.1-alpha.11", path = "../edlang_parser" }
18+
edlang_session = { version = "0.0.1-alpha.11", path = "../edlang_session" }
1919
llvm-sys = "170.0.1"
2020
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "e0aa2e51a6cb501e4e2a889bbea12a1efab9c4ff", features = ["llvm17-0"] }
2121
tracing = { workspace = true }
22-
edlang_span = { version = "0.0.1-alpha.10", path = "../edlang_span" }
22+
edlang_span = { version = "0.0.1-alpha.11", path = "../edlang_span" }

lib/edlang_driver/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edlang_driver"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "edlang compiler driver library"
66
edition = "2021"
@@ -16,13 +16,13 @@ repository = "https://github.com/edg-l/edlang"
1616
ariadne = { version = "0.4.0", features = ["auto-color"] }
1717
clap = { version = "4.4.16", features = ["derive"] }
1818
color-eyre = "0.6.2"
19-
edlang_ast = { version = "0.0.1-alpha.10", path = "../edlang_ast" }
20-
edlang_check = { version = "0.0.1-alpha.10", path = "../edlang_check" }
21-
edlang_codegen_llvm = { version = "0.0.1-alpha.10", path = "../edlang_codegen_llvm" }
22-
edlang_ir = { version = "0.0.1-alpha.10", path = "../edlang_ir" }
23-
edlang_lowering = { version = "0.0.1-alpha.10", path = "../edlang_lowering" }
24-
edlang_parser = { version = "0.0.1-alpha.10", path = "../edlang_parser" }
25-
edlang_session = { version = "0.0.1-alpha.10", path = "../edlang_session" }
19+
edlang_ast = { version = "0.0.1-alpha.11", path = "../edlang_ast" }
20+
edlang_check = { version = "0.0.1-alpha.11", path = "../edlang_check" }
21+
edlang_codegen_llvm = { version = "0.0.1-alpha.11", path = "../edlang_codegen_llvm" }
22+
edlang_ir = { version = "0.0.1-alpha.11", path = "../edlang_ir" }
23+
edlang_lowering = { version = "0.0.1-alpha.11", path = "../edlang_lowering" }
24+
edlang_parser = { version = "0.0.1-alpha.11", path = "../edlang_parser" }
25+
edlang_session = { version = "0.0.1-alpha.11", path = "../edlang_session" }
2626
tracing = { workspace = true }
2727
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2828

lib/edlang_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 = "edlang_ir"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "edlang IR"
66
edition = "2021"
@@ -13,6 +13,6 @@ repository = "https://github.com/edg-l/edlang"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
edlang_span = { version = "0.0.1-alpha.10", path = "../edlang_span" }
16+
edlang_span = { version = "0.0.1-alpha.11", path = "../edlang_span" }
1717
smallvec = "1.13.1"
1818
educe = "0.5.11"

lib/edlang_lowering/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edlang_lowering"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "edlang lowering"
66
edition = "2021"
@@ -13,7 +13,7 @@ repository = "https://github.com/edg-l/edlang"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
edlang_ast = { version = "0.0.1-alpha.10", path = "../edlang_ast" }
17-
edlang_ir = { version = "0.0.1-alpha.10", path = "../edlang_ir" }
16+
edlang_ast = { version = "0.0.1-alpha.11", path = "../edlang_ast" }
17+
edlang_ir = { version = "0.0.1-alpha.11", path = "../edlang_ir" }
1818
tracing.workspace = true
1919
thiserror = "1.0.57"

lib/edlang_parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edlang_parser"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "edlang parser"
66
edition = "2021"
@@ -14,7 +14,7 @@ repository = "https://github.com/edg-l/edlang"
1414

1515
[dependencies]
1616
ariadne = { version = "0.4.0", features = ["auto-color"] }
17-
edlang_ast = { version = "0.0.1-alpha.10", path = "../edlang_ast" }
17+
edlang_ast = { version = "0.0.1-alpha.11", path = "../edlang_ast" }
1818
itertools = "0.12.0"
1919
lalrpop-util = { version = "0.20.0", features = ["lexer"] }
2020
logos = "0.14.0"

lib/edlang_session/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edlang_session"
3-
version = "0.0.1-alpha.10"
3+
version = "0.0.1-alpha.11"
44
authors = ["Edgar Luque <edgar@edgarluque.com>"]
55
description = "edlang session"
66
edition = "2021"

0 commit comments

Comments
 (0)