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
18 changes: 9 additions & 9 deletions Cargo.lock

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

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

[workspace.package]
version = "0.3.2"
version = "0.4.0"
edition = "2021"
description = "Dynamo Inference Framework"
authors = ["NVIDIA Inc. <[email protected]>"]
Expand All @@ -26,9 +26,9 @@ keywords = ["llm", "genai", "inference", "nvidia", "distributed", "dynamo"]

[workspace.dependencies]
# Local crates
dynamo-runtime = { path = "lib/runtime", version = "0.3.2" }
dynamo-llm = { path = "lib/llm", version = "0.3.2" }
dynamo-tokens = { path = "lib/tokens", version = "0.3.2" }
dynamo-runtime = { path = "lib/runtime", version = "0.4.0" }
dynamo-llm = { path = "lib/llm", version = "0.4.0" }
dynamo-tokens = { path = "lib/tokens", version = "0.4.0" }

# External dependencies
anyhow = { version = "1" }
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ apiVersion: v2
name: dynamo-graph
description: A Helm chart to deploy a Dynamo graph on Kubernetes
type: application
version: 0.3.2
appVersion: 0.3.2
version: 0.4.0
appVersion: 0.4.0
6 changes: 3 additions & 3 deletions docs/support_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ If you are using a **GPU**, the following GPU models and architectures are suppo

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

### Build Dependency

Expand Down
6 changes: 3 additions & 3 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 @@ -19,7 +19,7 @@

[package]
name = "dynamo-py3"
version = "0.3.2"
version = "0.4.0"
edition = "2021"
authors = ["NVIDIA"]
license = "Apache-2.0"
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 @@ -22,7 +22,7 @@ members = [
resolver = "3"

[workspace.package]
version = "0.3.2"
version = "0.4.0"
edition = "2021"
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 @@ -15,7 +15,7 @@

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