Skip to content

Commit 497c640

Browse files
Merge pull request #81 from NVIDIA/release/2.1.1
Release 2.1.1
2 parents 5c04f62 + f4c7f1b commit 497c640

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

guest_tools/attestation_sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nv-attestation-sdk"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
description = "The Attestation SDK provides developers with a easy to use APIs for implementing attestation capabilities into their applications."
55
authors = ["Karthik Jayaraman <kjayaraman@nvidia.com>"]
66
readme = "README.md"

guest_tools/attestation_sdk/src/nv_attestation_sdk/utils/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"NV_NRAS_GPU_URL", "https://nras.attestation.nvidia.com/v3/attest/gpu"
1111
)
1212
REMOTE_NVSWITCH_VERIFIER_SERVICE_URL = os.getenv(
13-
"NV_NRAS_NVSWITCH_URL", "https://nras.attestation.nvidia.com/v3/attest/nvswitch"
13+
"NV_NRAS_NVSWITCH_URL", "https://nras.attestation.nvidia.com/v3/attest/switch"
1414
)
1515
# Planned to move the below to a list of acceptable GPU architectures
1616
GPU_ARCH = "HOPPER"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import os
22
REMOTE_GPU_VERIFIER_SERVICE_URL = os.getenv("NV_NRAS_GPU_URL", "https://nras.attestation.nvidia.com/v3/attest/gpu")
3-
REMOTE_NVSWITCH_VERIFIER_SERVICE_URL = os.getenv("NV_NRAS_NVSWITCH_URL", "https://nras.attestation.nvidia.com/v3/attest/nvswitch")
3+
REMOTE_NVSWITCH_VERIFIER_SERVICE_URL = os.getenv("NV_NRAS_NVSWITCH_URL", "https://nras.attestation.nvidia.com/v3/attest/switch")

guest_tools/ppcie-verifier/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nv-ppcie-verifier"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Protected PCIE Verifier"
55
authors = ["Shwetha Kalyanaraman <skalyanarama@nvidia.com>"]
66
license = "OSI Approved :: Apache Software License"
@@ -27,7 +27,7 @@ nvidia-ml-py = "^12.550.52"
2727
prettytable = "^3.10.0"
2828
pytest-cov = "^5.0.0"
2929
nv-local-gpu-verifier = "2.1.0"
30-
nv-attestation-sdk = "2.1.0"
30+
nv-attestation-sdk = "2.1.1"
3131

3232
[build-system]
3333
requires = ["poetry-core"]

0 commit comments

Comments
 (0)