Skip to content

Commit 5bc0315

Browse files
authored
Merge pull request #766 from elezar/bump-release-v1.17.0
Bump version for v1.17.0 release
2 parents 8c9d3d8 + 3fb1615 commit 5bc0315

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
# NVIDIA Container Toolkit Changelog
22

3+
## v1.17.0
4+
- Promote v1.17.0-rc.2 to v1.17.0
5+
- Fix bug when using just-in-time CDI spec generation
6+
- Check for valid paths in create-symlinks hook
7+
38
## v1.17.0-rc.2
4-
- Fix bug in locating libcuda.so form ldcache
9+
- Fix bug in locating libcuda.so from ldcache
510
- Fix bug in sorting of symlink chain
611
- Remove unsupported print-ldcache command
712
- Remove csv-filename support from create-symlinks
813

9-
## Changes in the Toolkit Container
14+
### Changes in the Toolkit Container
1015
- Fallback to `crio-status` if `crio status` does not work when configuring the crio runtime
1116

1217
## v1.17.0-rc.1

cmd/nvidia-cdi-hook/create-symlinks/create-symlinks_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ func TestCreateLink(t *testing.T) {
140140
}
141141

142142
for _, expectedLink := range tc.expectedLinks {
143-
path := strings.Replace(expectedLink.path, "{{ .containerRoot }}", containerRoot, -1)
144-
path = strings.Replace(path, "{{ .hostRoot }}", hostRoot, -1)
143+
path := strings.ReplaceAll(expectedLink.path, "{{ .containerRoot }}", containerRoot)
144+
path = strings.ReplaceAll(path, "{{ .hostRoot }}", hostRoot)
145145
if expectedLink.target != "" {
146146
target, err := symlinks.Resolve(path)
147147
require.ErrorIs(t, err, expectedLink.err)

versions.mk

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

1515
LIB_NAME := nvidia-container-toolkit
1616
LIB_VERSION := 1.17.0
17-
LIB_TAG := rc.2
17+
LIB_TAG :=
1818

1919
# The package version is the combination of the library version and tag.
2020
# If the tag is specified the two components are joined with a tilde (~).

0 commit comments

Comments
 (0)