Skip to content

Commit d48a452

Browse files
committed
chore(release): v0.2.2
1 parent 609be50 commit d48a452

File tree

22 files changed

+69
-69
lines changed

22 files changed

+69
-69
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -51,22 +51,22 @@ tower-lsp = "0.20"
5151
once_cell = "1"
5252

5353
# Internal workspace crates
54-
runmat-lexer = { version = "=0.2.1", path = "crates/runmat-lexer" }
55-
runmat-parser = { version = "=0.2.1", path = "crates/runmat-parser" }
56-
runmat-hir = { version = "=0.2.1", path = "crates/runmat-hir" }
57-
runmat-ignition = { version = "=0.2.1", path = "crates/runmat-ignition" }
58-
runmat-plot = { version = "=0.2.1", path = "crates/runmat-plot" }
59-
runmat-repl = { version = "=0.2.1", path = "crates/runmat-repl" }
60-
runmat-macros = { version = "=0.2.1", path = "crates/runmat-macros" }
61-
runmat-builtins = { version = "=0.2.1", path = "crates/runmat-builtins" }
62-
runmat-runtime = { version = "=0.2.1", path = "crates/runmat-runtime" }
63-
runmat-kernel = { version = "=0.2.1", path = "crates/runmat-kernel" }
64-
runmat-turbine = { version = "=0.2.1", path = "crates/runmat-turbine" }
65-
runmat-gc = { version = "=0.2.1", path = "crates/runmat-gc" }
66-
runmat-snapshot = { version = "=0.2.1", path = "crates/runmat-snapshot" }
67-
runmat-accelerate = { version = "=0.2.1", path = "crates/runmat-accelerate" }
68-
runmat-accelerate-api = { version = "=0.2.1", path = "crates/runmat-accelerate-api" }
69-
runmat-gc-api = { version = "=0.2.1", path = "crates/runmat-gc-api" }
54+
runmat-lexer = { version = "=0.2.2", path = "crates/runmat-lexer" }
55+
runmat-parser = { version = "=0.2.2", path = "crates/runmat-parser" }
56+
runmat-hir = { version = "=0.2.2", path = "crates/runmat-hir" }
57+
runmat-ignition = { version = "=0.2.2", path = "crates/runmat-ignition" }
58+
runmat-plot = { version = "=0.2.2", path = "crates/runmat-plot" }
59+
runmat-repl = { version = "=0.2.2", path = "crates/runmat-repl" }
60+
runmat-macros = { version = "=0.2.2", path = "crates/runmat-macros" }
61+
runmat-builtins = { version = "=0.2.2", path = "crates/runmat-builtins" }
62+
runmat-runtime = { version = "=0.2.2", path = "crates/runmat-runtime" }
63+
runmat-kernel = { version = "=0.2.2", path = "crates/runmat-kernel" }
64+
runmat-turbine = { version = "=0.2.2", path = "crates/runmat-turbine" }
65+
runmat-gc = { version = "=0.2.2", path = "crates/runmat-gc" }
66+
runmat-snapshot = { version = "=0.2.2", path = "crates/runmat-snapshot" }
67+
runmat-accelerate = { version = "=0.2.2", path = "crates/runmat-accelerate" }
68+
runmat-accelerate-api = { version = "=0.2.2", path = "crates/runmat-accelerate-api" }
69+
runmat-gc-api = { version = "=0.2.2", path = "crates/runmat-gc-api" }
7070

7171
[patch.crates-io]
7272
# Ensure no accidental cycle via crates.io variants

crates/runmat-accelerate-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runmat-accelerate-api"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
description = "Common API types for RunMat GPU acceleration backends"
66
homepage = "https://runmat.org"

crates/runmat-accelerate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runmat-accelerate"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Pluggable GPU acceleration layer for RunMat (CUDA, ROCm, Metal, Vulkan/Spir-V)"

crates/runmat-builtins/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runmat-builtins"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
authors = ["Dystr Team"]
66
license-file = "../LICENSE.md"

crates/runmat-gc-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runmat-gc-api"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
description = "Public API types for the RunMat garbage collector"
66
homepage = "https://runmat.org"

crates/runmat-gc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runmat-gc"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
description = "Generational garbage collector for RunMat with optional pointer compression"
66
authors = ["Dystr Team"]

crates/runmat-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 = "runmat-hir"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
authors = ["Dystr Team"]
66
license-file = "../LICENSE.md"

crates/runmat-ignition/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runmat-ignition"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
authors = ["Dystr Team"]
66
license-file = "../LICENSE.md"

crates/runmat-kernel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runmat-kernel"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
authors = ["Dystr Team"]
66
license-file = "../LICENSE.md"

0 commit comments

Comments
 (0)