Skip to content

Commit 1117d0e

Browse files
cognectclaude
andcommitted
chore(release): v0.9.1 — track atomr 0.9.1, sync workspace version
Re-pin the atomr workspace path-deps to 0.9.1 (rustakka/atomr now ships v0.9.1) and bump atomr-accel's own workspace version from 0.4.4 to 0.9.1 so the two repos move in lockstep going forward. Also bumps every intra-workspace `version = "0.4.0"` pin (atomr-accel-cuda, -patterns, -train, etc.) to 0.9.1 so cargo can resolve under the new umbrella version. No code changes — pin refresh + workspace version alignment only. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 1777fa0 commit 1117d0e

9 files changed

Lines changed: 54 additions & 54 deletions

File tree

Cargo.lock

Lines changed: 24 additions & 24 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
@@ -17,7 +17,7 @@ members = [
1717
]
1818

1919
[workspace.package]
20-
version = "0.4.5"
20+
version = "0.9.1"
2121
edition = "2021"
2222
rust-version = "1.78"
2323
license = "Apache-2.0"
@@ -30,14 +30,14 @@ keywords = ["cuda", "gpu", "atomr", "actor", "ml"]
3030
categories = ["concurrency", "asynchronous", "science", "hardware-support"]
3131

3232
[workspace.dependencies]
33-
atomr-core = { path = "../atomr/crates/atomr-core", version = "0.8.0" }
34-
atomr-config = { path = "../atomr/crates/atomr-config", version = "0.8.0" }
35-
atomr-macros = { path = "../atomr/crates/atomr-macros", version = "0.8.0" }
36-
atomr-persistence = { path = "../atomr/crates/atomr-persistence", version = "0.8.0" }
37-
atomr-cluster-sharding = { path = "../atomr/crates/atomr-cluster-sharding", version = "0.8.0" }
38-
atomr-streams = { path = "../atomr/crates/atomr-streams", version = "0.8.0" }
39-
atomr-telemetry = { path = "../atomr/crates/atomr-telemetry", version = "0.8.0" }
40-
atomr-testkit = { path = "../atomr/crates/atomr-testkit", version = "0.8.0" }
33+
atomr-core = { path = "../atomr/crates/atomr-core", version = "0.9.1" }
34+
atomr-config = { path = "../atomr/crates/atomr-config", version = "0.9.1" }
35+
atomr-macros = { path = "../atomr/crates/atomr-macros", version = "0.9.1" }
36+
atomr-persistence = { path = "../atomr/crates/atomr-persistence", version = "0.9.1" }
37+
atomr-cluster-sharding = { path = "../atomr/crates/atomr-cluster-sharding", version = "0.9.1" }
38+
atomr-streams = { path = "../atomr/crates/atomr-streams", version = "0.9.1" }
39+
atomr-telemetry = { path = "../atomr/crates/atomr-telemetry", version = "0.9.1" }
40+
atomr-testkit = { path = "../atomr/crates/atomr-testkit", version = "0.9.1" }
4141

4242
cudarc = { version = "0.19.4", features = ["cuda-version-from-build-system", "fallback-latest"] }
4343

crates/atomr-accel-agents/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ description = "Agentic / LLM GPU actor blueprints on atomr-accel-cuda: RagPipeli
1616
atomr-core = { workspace = true }
1717
atomr-config = { workspace = true }
1818
atomr-macros = { workspace = true }
19-
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.4.0" }
19+
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.9.1" }
2020
async-trait = { workspace = true }
2121
tokio = { workspace = true }
2222
parking_lot = { workspace = true }

crates/atomr-accel-cub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ nvrtc-lto = ["atomr-accel-cuda/nvrtc-lto"]
2727

2828
[dependencies]
2929
atomr-core = { workspace = true }
30-
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.4.0", default-features = false, features = ["nvrtc"] }
30+
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.9.1", default-features = false, features = ["nvrtc"] }
3131
cudarc = { workspace = true }
3232
tokio = { workspace = true }
3333
async-trait = { workspace = true }

crates/atomr-accel-cuda-realtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ nvrtc = ["atomr-accel-cuda/nvrtc"]
2727
atomr-core = { workspace = true }
2828
atomr-config = { workspace = true }
2929
atomr-macros = { workspace = true }
30-
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.4.0" }
30+
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.9.1" }
3131
async-trait = { workspace = true }
3232
tokio = { workspace = true }
3333
parking_lot = { workspace = true }

crates/atomr-accel-cuda/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ full-cuda = ["training-libs", "nccl", "cuda-ipc", "graphs-conditional"]
178178
atomr-core = { workspace = true }
179179
atomr-config = { workspace = true }
180180
atomr-macros = { workspace = true }
181-
atomr-accel = { path = "../atomr-accel", version = "0.4.0", default-features = false }
181+
atomr-accel = { path = "../atomr-accel", version = "0.9.1", default-features = false }
182182
cudarc = { workspace = true }
183183
tokio = { workspace = true }
184184
async-trait = { workspace = true }
@@ -197,18 +197,18 @@ atomr-persistence = { workspace = true, optional = true }
197197
atomr-cluster-sharding = { workspace = true, optional = true }
198198
atomr-streams = { workspace = true, optional = true }
199199
atomr-telemetry = { workspace = true, optional = true }
200-
atomr-accel-telemetry = { path = "../atomr-accel-telemetry", version = "0.4.0", optional = true, default-features = false }
201-
atomr-accel-flashattn = { path = "../atomr-accel-flashattn", version = "0.4.0", optional = true }
200+
atomr-accel-telemetry = { path = "../atomr-accel-telemetry", version = "0.9.1", optional = true, default-features = false }
201+
atomr-accel-flashattn = { path = "../atomr-accel-flashattn", version = "0.9.1", optional = true }
202202
serde = { version = "1", features = ["derive"] }
203203
serde_json = { version = "1", optional = true }
204204
# NVRTC persistent kernel cache (Phase 0.6). `bincode = "1"` for the
205205
# on-disk format; `dirs` for `$XDG_CACHE_HOME` / `$HOME/.cache` probing.
206206
bincode = "1"
207207
dirs = "5"
208208
# Phase 8 TensorRT crate (linked at runtime; libnvinfer is proprietary).
209-
atomr-accel-tensorrt = { path = "../atomr-accel-tensorrt", version = "0.4.0", optional = true }
209+
atomr-accel-tensorrt = { path = "../atomr-accel-tensorrt", version = "0.9.1", optional = true }
210210
# Phase 6 CUTLASS template-instantiation crate (vendored headers + NVRTC).
211-
atomr-accel-cutlass = { path = "../atomr-accel-cutlass", version = "0.4.0", optional = true }
211+
atomr-accel-cutlass = { path = "../atomr-accel-cutlass", version = "0.9.1", optional = true }
212212

213213
[dev-dependencies]
214214
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync", "time", "test-util"] }

crates/atomr-accel-patterns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ description = "Universal GPU actor blueprints for atomr-accel-cuda: DynamicBatch
1616
atomr-core = { workspace = true }
1717
atomr-config = { workspace = true }
1818
atomr-macros = { workspace = true }
19-
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.4.0" }
19+
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.9.1" }
2020
async-trait = { workspace = true }
2121
tokio = { workspace = true }
2222
parking_lot = { workspace = true }

crates/atomr-accel-py/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,16 @@ tensorrt-plugin = ["tensorrt", "atomr-accel-tensorrt/tensorrt-plugin"]
7474
[dependencies]
7575
atomr-core = { workspace = true }
7676
atomr-config = { workspace = true }
77-
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.4.0" }
78-
atomr-accel-patterns = { path = "../atomr-accel-patterns", version = "0.4.0" }
79-
atomr-accel-train = { path = "../atomr-accel-train", version = "0.4.0" }
80-
atomr-accel-agents = { path = "../atomr-accel-agents", version = "0.4.0" }
81-
atomr-accel-cuda-realtime = { path = "../atomr-accel-cuda-realtime", version = "0.4.0" }
82-
atomr-accel-telemetry = { path = "../atomr-accel-telemetry", version = "0.4.0", optional = true }
83-
atomr-accel-cub = { path = "../atomr-accel-cub", version = "0.4.0", optional = true }
84-
atomr-accel-cutlass = { path = "../atomr-accel-cutlass", version = "0.4.0", optional = true }
85-
atomr-accel-flashattn = { path = "../atomr-accel-flashattn", version = "0.4.0", optional = true }
86-
atomr-accel-tensorrt = { path = "../atomr-accel-tensorrt", version = "0.4.0", optional = true }
77+
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.9.1" }
78+
atomr-accel-patterns = { path = "../atomr-accel-patterns", version = "0.9.1" }
79+
atomr-accel-train = { path = "../atomr-accel-train", version = "0.9.1" }
80+
atomr-accel-agents = { path = "../atomr-accel-agents", version = "0.9.1" }
81+
atomr-accel-cuda-realtime = { path = "../atomr-accel-cuda-realtime", version = "0.9.1" }
82+
atomr-accel-telemetry = { path = "../atomr-accel-telemetry", version = "0.9.1", optional = true }
83+
atomr-accel-cub = { path = "../atomr-accel-cub", version = "0.9.1", optional = true }
84+
atomr-accel-cutlass = { path = "../atomr-accel-cutlass", version = "0.9.1", optional = true }
85+
atomr-accel-flashattn = { path = "../atomr-accel-flashattn", version = "0.9.1", optional = true }
86+
atomr-accel-tensorrt = { path = "../atomr-accel-tensorrt", version = "0.9.1", optional = true }
8787
cudarc = { workspace = true }
8888

8989
pyo3 = { workspace = true, features = ["abi3-py310", "macros"] }

crates/atomr-accel-train/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ description = "Distributed training blueprints on atomr-accel-cuda: DataParallel
1616
atomr-core = { workspace = true }
1717
atomr-config = { workspace = true }
1818
atomr-macros = { workspace = true }
19-
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.4.0" }
20-
atomr-accel-patterns = { path = "../atomr-accel-patterns", version = "0.4.0" }
19+
atomr-accel-cuda = { path = "../atomr-accel-cuda", version = "0.9.1" }
20+
atomr-accel-patterns = { path = "../atomr-accel-patterns", version = "0.9.1" }
2121
async-trait = { workspace = true }
2222
tokio = { workspace = true }
2323
parking_lot = { workspace = true }

0 commit comments

Comments
 (0)