Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
resolver = "3"

[workspace.package]
version = "0.5.0"
version = "0.5.1"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

🧩 Analysis chain

Root workspace and local crate versions aligned to 0.5.1.

Looks consistent. Consider running cargo metadata to verify dependency graph coherence.

Quick checks:

Also applies to: 30-34


🏁 Script executed:

#!/bin/bash
# Confirm version pins
rg -nP 'dynamo-(runtime|llm|tokens|async-openai|parsers).*version\s*=\s*"0\.5\.1"' Cargo.toml

# Ensure no leftover 0.5.0 in Rust manifests
fd Cargo.toml | xargs rg -n '\b0\.5\.0\b' || true

Length of output: 385


Mismatch: tmq dependency still pinned at 0.5.0
• lib/llm/Cargo.toml:81 has tmq = "0.5.0"—bump to "0.5.1" to align with the workspace.
• Re-run cargo metadata to verify the full dependency graph.

🤖 Prompt for AI Agents
In Cargo.toml around line 19, the workspace version was bumped to 0.5.1 but the
lib/llm/Cargo.toml still pins tmq = "0.5.0"; update that dependency to tmq =
"0.5.1" so it matches the workspace, save the file, and re-run cargo metadata to
verify the dependency graph and ensure no version conflicts remain.

edition = "2024"
description = "Dynamo Inference Framework"
authors = ["NVIDIA Inc. <[email protected]>"]
Expand All @@ -27,14 +27,15 @@ keywords = ["llm", "genai", "inference", "nvidia", "distributed"]

[workspace.dependencies]
# Local crates
dynamo-runtime = { path = "lib/runtime", version = "0.5.0" }
dynamo-llm = { path = "lib/llm", version = "0.5.0" }
dynamo-tokens = { path = "lib/tokens", version = "0.5.0" }
dynamo-async-openai = { path = "lib/async-openai", version = "0.5.0", features = [
dynamo-runtime = { path = "lib/runtime", version = "0.5.1" }
dynamo-llm = { path = "lib/llm", version = "0.5.1" }
dynamo-tokens = { path = "lib/tokens", version = "0.5.1" }
dynamo-async-openai = { path = "lib/async-openai", version = "0.5.1", features = [
"byot",
"rustls",
] }
dynamo-parsers = { path = "lib/parsers", version = "0.5.0" }
dynamo-parsers = { path = "lib/parsers", version = "0.5.1" }


# External dependencies
anyhow = { version = "1" }
Expand Down
4 changes: 2 additions & 2 deletions docs/support_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ If you are using a **GPU**, the following GPU models and architectures are suppo

| **Python Package** | **Version** | glibc version | CUDA Version |
| :----------------- | :------------ | :----------------------------------- | :----------- |
| ai-dynamo | 0.5.0 | >=2.28 | |
| ai-dynamo-runtime | 0.5.0 | >=2.28 (Python 3.12 has known issues)| |
| ai-dynamo | 0.5.1 | >=2.28 | |
| ai-dynamo-runtime | 0.5.1 | >=2.28 (Python 3.12 has known issues)| |
| NIXL | 0.4.1 | >=2.27 | >=11.8 |

### Build Dependency
Expand Down
10 changes: 5 additions & 5 deletions lib/bindings/python/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[package]
name = "dynamo-py3"
version = "0.5.0"
version = "0.5.1"
edition = "2024"
authors = ["NVIDIA"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

[project]
name = "ai-dynamo-runtime"
version = "0.5.0"
version = "0.5.1"
description = "Dynamo Inference Framework Runtime"
readme = "README.md"
authors = [
Expand Down
8 changes: 4 additions & 4 deletions lib/runtime/examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/runtime/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
resolver = "3"

[workspace.package]
version = "0.5.0"
version = "0.5.1"
edition = "2024"
authors = ["NVIDIA"]
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[project]
name = "ai-dynamo"
version = "0.5.0"
version = "0.5.1"
description = "Distributed Inference Framework"
readme = "README.md"
authors = [
Expand All @@ -13,7 +13,7 @@ license = { text = "Apache-2.0" }
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"ai-dynamo-runtime==0.5.0",
"ai-dynamo-runtime==0.5.1",
"pytest>=8.3.4",
"types-psutil>=7.0.0.20250218",
"kubernetes>=32.0.1,<33.0.0",
Expand Down
Loading