Skip to content

Commit 1b9a8b7

Browse files
authored
Merge pull request #66 from xch-dev/bump-0.5.0
Bump version to 0.5.0
2 parents 4c1c5b3 + 81534b0 commit 1b9a8b7

File tree

15 files changed

+35
-35
lines changed

15 files changed

+35
-35
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ match_same_arms = "allow"
4040
similar_names = "allow"
4141

4242
[workspace.dependencies]
43-
rue-lexer = { path = "crates/rue-lexer", version = "0.4.0" }
44-
rue-parser = { path = "crates/rue-parser", version = "0.4.0" }
45-
rue-diagnostic = { path = "crates/rue-diagnostic", version = "0.4.0" }
46-
rue-ast = { path = "crates/rue-ast", version = "0.4.0" }
47-
rue-compiler = { path = "crates/rue-compiler", version = "0.4.0" }
48-
rue-options = { path = "crates/rue-options", version = "0.4.0" }
49-
rue-lir = { path = "crates/rue-lir", version = "0.4.0" }
50-
rue-hir = { path = "crates/rue-hir", version = "0.4.0" }
51-
rue-types = { path = "crates/rue-types", version = "0.4.0" }
43+
rue-lexer = { path = "crates/rue-lexer", version = "0.5.0" }
44+
rue-parser = { path = "crates/rue-parser", version = "0.5.0" }
45+
rue-diagnostic = { path = "crates/rue-diagnostic", version = "0.5.0" }
46+
rue-ast = { path = "crates/rue-ast", version = "0.5.0" }
47+
rue-compiler = { path = "crates/rue-compiler", version = "0.5.0" }
48+
rue-options = { path = "crates/rue-options", version = "0.5.0" }
49+
rue-lir = { path = "crates/rue-lir", version = "0.5.0" }
50+
rue-hir = { path = "crates/rue-hir", version = "0.5.0" }
51+
rue-types = { path = "crates/rue-types", version = "0.5.0" }
5252
anyhow = "1.0.98"
5353
clvm-traits = "0.28.1"
5454
clvm-utils = "0.28.1"

crates/rue-ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rue-ast"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "An implementation of the Abstract Syntax Tree for the Rue compiler."

crates/rue-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rue-cli"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "A CLI tool for invoking the Rue compiler."

crates/rue-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rue-compiler"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "A compiler for the Rue programming language."

crates/rue-diagnostic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rue-diagnostic"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "All of the potential diagnostics that can be emitted by the Rue compiler."

crates/rue-hir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rue-hir"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "Provides a high-level intermediate representation of the Rue programming language."

crates/rue-lexer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rue-lexer"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "A lexer for the Rue programming language."

crates/rue-lir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rue-lir"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "Provides a low-level intermediate representation that compiles to CLVM."

crates/rue-lsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rue-lsp"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "A language server protocol (LSP) implementation for the Rue programming language."

0 commit comments

Comments
 (0)