Skip to content

Commit cec3fd5

Browse files
Bumped Dynamo version to 0.4.1
1 parent 177d662 commit cec3fd5

File tree

9 files changed

+62
-64
lines changed

9 files changed

+62
-64
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ members = [
1717
resolver = "3"
1818

1919
[workspace.package]
20-
version = "0.4.0+post0"
20+
version = "0.4.1"
2121
edition = "2021"
2222
description = "Dynamo Inference Framework"
2323
authors = ["NVIDIA Inc. <sw-dl-dynamo@nvidia.com>"]
@@ -28,10 +28,10 @@ keywords = ["llm", "genai", "inference", "nvidia", "distributed", "dynamo"]
2828

2929
[workspace.dependencies]
3030
# Local crates
31-
dynamo-runtime = { path = "lib/runtime", version = "0.4.0" }
32-
dynamo-llm = { path = "lib/llm", version = "0.4.0" }
33-
dynamo-tokens = { path = "lib/tokens", version = "0.4.0" }
34-
dynamo-async-openai = { path = "lib/async-openai", version = "0.4.0", features = ["byot", "rustls"]}
31+
dynamo-runtime = { path = "lib/runtime", version = "0.4.1" }
32+
dynamo-llm = { path = "lib/llm", version = "0.4.1" }
33+
dynamo-tokens = { path = "lib/tokens", version = "0.4.1" }
34+
dynamo-async-openai = { path = "lib/async-openai", version = "0.4.1", features = ["byot", "rustls"]}
3535

3636
# External dependencies
3737
anyhow = { version = "1" }

docs/support_matrix.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ If you are using a **GPU**, the following GPU models and architectures are suppo
5858

5959
| **Python Package** | **Version** | glibc version | CUDA Version |
6060
| :----------------- | :------------ | :----------------------------------- | :----------- |
61-
| ai-dynamo | 0.4.0 | >=2.28 | |
62-
| ai-dynamo-runtime | 0.4.0 | >=2.28 (Python 3.12 has known issues)| |
63-
| NIXL | 0.5.0 | >=2.27 | >=11.8 |
61+
| ai-dynamo | 0.4.1 | >=2.28 | |
62+
| ai-dynamo-runtime | 0.4.1 | >=2.28 (Python 3.12 has known issues)| |
63+
| NIXL | 0.4.1 | >=2.27 | >=11.8 |
6464

6565
### Build Dependency
6666

6767
| **Build Dependency** | **Version** |
6868
| :------------------- | :------------------------------------------------------------------------------- |
6969
| **Base Container** | [25.03](https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda-dl-base/tags) |
70-
| **TensorRT-LLM** | 1.0.0rc² |
71-
| **NIXL** | 0.4.0 |
70+
| **TensorRT-LLM** | 1.0.0rc4 |
71+
| **NIXL** | 0.4.1 |
7272

7373
> [!Important]
7474
> ² Specific versions of TensorRT-LLM supported by Dynamo are subject to change.

lib/bindings/python/Cargo.lock

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

lib/bindings/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
[package]
2121
name = "dynamo-py3"
22-
version = "0.4.0+post0"
22+
version = "0.4.1"
2323
edition = "2021"
2424
authors = ["NVIDIA"]
2525
license = "Apache-2.0"

lib/bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[project]
1818
name = "ai-dynamo-runtime"
19-
version = "0.4.0.post0"
19+
version = "0.4.1"
2020
description = "Dynamo Inference Framework Runtime"
2121
readme = "README.md"
2222
authors = [

lib/runtime/examples/Cargo.lock

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

lib/runtime/examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ members = [
2222
resolver = "3"
2323

2424
[workspace.package]
25-
version = "0.4.0+post0"
25+
version = "0.4.1"
2626
edition = "2021"
2727
authors = ["NVIDIA"]
2828
license = "Apache-2.0"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[project]
55
name = "ai-dynamo"
6-
version = "0.4.0.post0"
6+
version = "0.4.1"
77
description = "Distributed Inference Framework"
88
readme = "README.md"
99
authors = [
@@ -13,7 +13,7 @@ license = { text = "Apache-2.0" }
1313
license-files = ["LICENSE"]
1414
requires-python = ">=3.10"
1515
dependencies = [
16-
"ai-dynamo-runtime==0.4.0.post0",
16+
"ai-dynamo-runtime==0.4.1",
1717
"pytest>=8.3.4",
1818
"types-psutil>=7.0.0.20250218",
1919
"kubernetes>=32.0.1,<33.0.0",

0 commit comments

Comments
 (0)