Skip to content

Commit ebae023

Browse files
chore: version bump for 0.2.1 release (#111)
Signed-off-by: Harrison King Saturley-Hall <hsaturleyhal@nvidia.com> Signed-off-by: Harrison Saturley-Hall <hsaturleyhal@nvidia.com>
1 parent 9864f78 commit ebae023

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
resolver = "3"
1313

1414
[workspace.package]
15-
version = "0.2.0"
15+
version = "0.2.1"
1616
edition = "2024"
1717
description = "Model Express: High-performance model serving and management"
1818
authors = ["NVIDIA Inc. <sw-dl-dynamo@nvidia.com>"]
@@ -34,9 +34,9 @@ hf-hub = { version = "0.4.3", default-features = false, features = [
3434
"rustls-tls",
3535
] }
3636
jiff = { version = "0.2.15", features = ["serde"] }
37-
modelexpress-common = { path = "modelexpress_common", version = "0.2.0" }
38-
modelexpress-client = { path = "modelexpress_client", version = "0.2.0" }
39-
modelexpress-server = { path = "modelexpress_server", version = "0.2.0" }
37+
modelexpress-common = { path = "modelexpress_common", version = "0.2.1" }
38+
modelexpress-client = { path = "modelexpress_client", version = "0.2.1" }
39+
modelexpress-server = { path = "modelexpress_server", version = "0.2.1" }
4040
once_cell = "1.21.3"
4141
prost = "0.13"
4242
rusqlite = { version = "0.37", features = ["bundled", "chrono"] }

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN cargo build --release --bin modelexpress-server && \
2020
cargo build --release --bin fallback_test
2121

2222
# Create a minimal runtime image
23-
FROM nvcr.io/nvidia/base/ubuntu:noble-20250619
23+
FROM nvcr.io/nvidia/base/ubuntu:noble-20250619 AS runtime
2424

2525
WORKDIR /app
2626

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ apiVersion: v2
55
name: modelexpress
66
description: A Helm chart for ModelExpress - a AI model cache management service
77
type: application
8-
version: 0.2.0
9-
appVersion: "0.2.0"
8+
version: 0.2.1
9+
appVersion: "0.2.1"
1010
keywords:
1111
- model-serving
1212
- ai

helm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ The following table lists the configurable parameters of the ModelExpress chart
101101
| `replicaCount` | Number of ModelExpress replicas | `1` |
102102
| `image.repository` | ModelExpress image repository | `nvcr.io/nvidia/ai-dynamo/modelexpress-server` |
103103
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
104-
| `image.tag` | ModelExpress image tag | `0.2.0` |
104+
| `image.tag` | ModelExpress image tag | `0.2.1` |
105105
| `imagePullSecrets` | Image pull secrets for nvcr.io access | `[]` |
106106
| `nameOverride` | Override the chart name | `""` |
107107
| `fullnameOverride` | Override the full app name | `""` |

helm/test-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replicaCount: 1
77
image:
88
repository: nvcr.io/nvidia/ai-dynamo/modelexpress-server
99
pullPolicy: IfNotPresent
10-
tag: "0.2.0"
10+
tag: "0.2.1"
1111

1212
serviceAccount:
1313
create: true

helm/values-development.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replicaCount: 1
77
image:
88
repository: nvcr.io/nvidia/ai-dynamo/modelexpress-server
99
pullPolicy: IfNotPresent
10-
tag: "0.2.0"
10+
tag: "0.2.1"
1111

1212
serviceAccount:
1313
create: true

helm/values-production.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replicaCount: 3
77
image:
88
repository: nvcr.io/nvidia/ai-dynamo/modelexpress-server
99
pullPolicy: Always
10-
tag: "0.2.0"
10+
tag: "0.2.1"
1111

1212
serviceAccount:
1313
create: true

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replicaCount: 1
1010
image:
1111
repository: nvcr.io/nvidia/ai-dynamo/modelexpress-server
1212
pullPolicy: IfNotPresent
13-
tag: "0.2.0"
13+
tag: "0.2.1"
1414

1515
imagePullSecrets:
1616
- name: nvcr-secret

k8s-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
- name: ngc-secret
2222
containers:
2323
- name: model-express-server
24-
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.2.0
24+
image: nvcr.io/nvidia/ai-dynamo/modelexpress-server:0.2.1
2525
imagePullPolicy: IfNotPresent
2626
ports:
2727
- containerPort: 8001

0 commit comments

Comments
 (0)