Skip to content

Commit 9853dc5

Browse files
committed
Update version to 26.03.0-RC1 for release preparation
Update all version references from 26.3.0-RC1 to 26.03.0-RC1 (adding leading zero on month). Pin intra-project dependencies (nv-ingest, nv-ingest-api, nv-ingest-client) to ==26.03.0-RC1 in nemo_retriever and tools/harness pyproject.toml files for release. Made-with: Cursor
1 parent 371d883 commit 9853dc5

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ services:
262262
- audio
263263

264264
nv-ingest-ms-runtime:
265-
image: nvcr.io/nvidia/nemo-microservices/nv-ingest:26.3.0-RC1
265+
image: nvcr.io/nvidia/nemo-microservices/nv-ingest:26.03.0-RC1
266266
shm_size: 40gb # Should be at minimum 30% of assigned memory per Ray documentation
267267
build:
268268
context: ${NV_INGEST_ROOT:-.}

docs/docs/extraction/helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
<!-- Use this documentation to deploy [NeMo Retriever Library](overview.md) by using Helm. -->
44

55
To deploy [NeMo Retriever Library](overview.md) by using Helm,
6-
refer to [NeMo Retriever Helm Charts](https://github.com/NVIDIA/NeMo-Retriever/blob/release/26.3.0-RC1/helm/README.md).
6+
refer to [NeMo Retriever Helm Charts](https://github.com/NVIDIA/NeMo-Retriever/blob/release/26.03.0-RC1/helm/README.md).

docs/docs/extraction/quickstart-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ h. Run the command `docker ps`. You should see output similar to the following.
8484
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
8585
uv venv --python 3.12 nv-ingest-dev
8686
source nv-ingest-dev/bin/activate
87-
uv pip install nv-ingest==26.3.0-RC1 nv-ingest-api==26.3.0-RC1 nv-ingest-client==26.3.0-RC1
87+
uv pip install nv-ingest==26.03.0-RC1 nv-ingest-api==26.03.0-RC1 nv-ingest-client==26.03.0-RC1
8888
```
8989
9090
!!! tip

docs/docs/extraction/quickstart-library-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Use the following procedure to prepare your environment.
3434
```
3535
uv venv --python 3.12 nvingest && \
3636
source nvingest/bin/activate && \
37-
uv pip install nemo-retriever==26.3.0-RC1 milvus-lite==2.4.12
37+
uv pip install nemo-retriever==26.03.0-RC1 milvus-lite==2.4.12
3838
```
3939
4040
!!! tip

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: nv-ingest
33
description: NV-Ingest Microservice
44
type: application
5-
version: 26.3.0-RC1
5+
version: 26.03.0-RC1
66
maintainers:
77
- name: NVIDIA Corporation
88
url: https://www.nvidia.com/

helm/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To install or upgrade the Helm chart, run the following code.
4545
helm upgrade \
4646
--install \
4747
nv-ingest \
48-
https://helm.ngc.nvidia.com/nvidia/nemo-microservices/charts/nv-ingest-26.3.0-RC1.tgz \
48+
https://helm.ngc.nvidia.com/nvidia/nemo-microservices/charts/nv-ingest-26.03.0-RC1.tgz \
4949
-n ${NAMESPACE} \
5050
--username '$oauthtoken' \
5151
--password "${NGC_API_KEY}" \
@@ -54,7 +54,7 @@ helm upgrade \
5454
--set ngcApiSecret.create=true \
5555
--set ngcApiSecret.password="${NGC_API_KEY}" \
5656
--set image.repository="nvcr.io/nvidia/nemo-microservices/nv-ingest" \
57-
--set image.tag="26.3.0-RC1"
57+
--set image.tag="26.03.0-RC1"
5858
```
5959

6060
Optionally you can create your own versions of the `Secrets` if you do not want to use the creation via the helm chart.
@@ -105,7 +105,7 @@ For more information, refer to [NV-Ingest-Client](https://github.com/NVIDIA/nv-i
105105
# Just to be cautious we remove any existing installation
106106
pip uninstall nv-ingest-client
107107

108-
pip install nv-ingest-client==26.3.0-RC1
108+
pip install nv-ingest-client==26.03.0-RC1
109109
```
110110

111111
#### Rest Endpoint Ingress
@@ -347,7 +347,7 @@ You can also use NV-Ingest's Python client API to interact with the service runn
347347
| fullnameOverride | string | `""` | |
348348
| image.pullPolicy | string | `"IfNotPresent"` | |
349349
| image.repository | string | `"nvcr.io/nvidia/nemo-microservices/nv-ingest"` | |
350-
| image.tag | string | `"26.3.0-RC1"` | |
350+
| image.tag | string | `"26.03.0-RC1"` | |
351351
| imagePullSecrets[0].name | string | `"ngc-api"` | |
352352
| imagePullSecrets[1].name | string | `"ngc-secret"` | |
353353
| ingress.annotations | object | `{}` | |

helm/README.md.gotmpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To install or upgrade the Helm chart, run the following code.
4646
helm upgrade \
4747
--install \
4848
nv-ingest \
49-
https://helm.ngc.nvidia.com/nvidia/nemo-microservices/charts/nv-ingest-26.3.0-RC1.tgz \
49+
https://helm.ngc.nvidia.com/nvidia/nemo-microservices/charts/nv-ingest-26.03.0-RC1.tgz \
5050
-n ${NAMESPACE} \
5151
--username '$oauthtoken' \
5252
--password "${NGC_API_KEY}" \
@@ -55,7 +55,7 @@ helm upgrade \
5555
--set ngcApiSecret.create=true \
5656
--set ngcApiSecret.password="${NGC_API_KEY}" \
5757
--set image.repository="nvcr.io/nvidia/nemo-microservices/nv-ingest" \
58-
--set image.tag="26.3.0-RC1"
58+
--set image.tag="26.03.0-RC1"
5959
```
6060

6161
Optionally you can create your own versions of the `Secrets` if you do not want to use the creation via the helm chart.
@@ -107,7 +107,7 @@ For more information, refer to [NV-Ingest-Client](https://github.com/NVIDIA/nv-i
107107
# Just to be cautious we remove any existing installation
108108
pip uninstall nv-ingest-client
109109
110-
pip install nv-ingest-client==26.3.0-RC1
110+
pip install nv-ingest-client==26.03.0-RC1
111111
```
112112

113113
#### Rest Endpoint Ingress

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ nameOverride: ""
2828
image:
2929
pullPolicy: IfNotPresent
3030
repository: "nvcr.io/nvidia/nemo-microservices/nv-ingest"
31-
tag: "26.3.0-RC1"
31+
tag: "26.03.0-RC1"
3232

3333
## @section Pod Configuration
3434
## @param podAnnotations [object] Sets additional annotations on the main deployment pods

nemo_retriever/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ dependencies = [
3030
"typer>=0.12.0",
3131
"pyyaml>=6.0",
3232
"lancedb",
33-
"nv-ingest",
34-
"nv-ingest-api",
35-
"nv-ingest-client",
33+
"nv-ingest==26.03.0-RC1",
34+
"nv-ingest-api==26.03.0-RC1",
35+
"nv-ingest-client==26.03.0-RC1",
3636
"fastapi>=0.114.0",
3737
"uvicorn[standard]>=0.30.0",
3838
"httpx>=0.27.0",

src/nv_ingest/api/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
app = FastAPI(
2424
title="NV-Ingest Microservice",
2525
description="Service for ingesting heterogenous datatypes",
26-
version="26.3.0-RC1",
26+
version="26.03.0-RC1",
2727
contact={
2828
"name": "NVIDIA Corporation",
2929
"url": "https://nvidia.com",

0 commit comments

Comments
 (0)