Skip to content

Commit d9de4a0

Browse files
author
Evan Lezar
committed
Merge branch 'bump-version-1.11.0' into 'main'
Bump version to 1.11.0 See merge request nvidia/container-toolkit/container-toolkit!213
2 parents 503ed96 + 2dbcda2 commit d9de4a0

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# NVIDIA Container Toolkit Changelog
22

3+
## v1.11.0
4+
5+
* Promote v1.11.0-rc.3 to v1.11.0
6+
37
## v1.11.0-rc.3
48

59
* Build fedora35 packages

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ CLI_VERSION = $(LIB_VERSION)$(if $(LIB_TAG),-$(LIB_TAG))
5151
else
5252
CLI_VERSION = $(VERSION)
5353
endif
54+
CLI_VERSION_PACKAGE = github.com/NVIDIA/nvidia-container-toolkit/internal/info
5455

5556
GOOS ?= linux
5657

@@ -60,7 +61,7 @@ cmd-%: COMMAND_BUILD_OPTIONS = -o $(PREFIX)/$(*)
6061
endif
6162
cmds: $(CMD_TARGETS)
6263
$(CMD_TARGETS): cmd-%:
63-
GOOS=$(GOOS) go build -ldflags "-s -w -X github.com/NVIDIA/nvidia-container-toolkit/internal/info.gitCommit=$(GIT_COMMIT) -X github.com/NVIDIA/nvidia-container-toolkit/internal/info.version=$(CLI_VERSION)" $(COMMAND_BUILD_OPTIONS) $(MODULE)/cmd/$(*)
64+
GOOS=$(GOOS) go build -ldflags "-s -w -X $(CLI_VERSION_PACKAGE).gitCommit=$(GIT_COMMIT) -X $(CLI_VERSION_PACKAGE).version=$(CLI_VERSION)" $(COMMAND_BUILD_OPTIONS) $(MODULE)/cmd/$(*)
6465

6566
build:
6667
GOOS=$(GOOS) go build ./...

docker/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ RUN dch --create --package="${PKG_NAME}" \
7878
CMD export DISTRIB="$(lsb_release -cs)" && \
7979
debuild -eDISTRIB -eSECTION -eLIBNVIDIA_CONTAINER_TOOLS_VERSION -eVERSION="${REVISION}" \
8080
--dpkg-buildpackage-hook='sh debian/prepare' -i -us -uc -b && \
81-
mv /tmp/nvidia-container-toolkit_*.deb /dist
81+
mv /tmp/*.deb /dist

third_party/libnvidia-container

Submodule libnvidia-container updated from 2ef6664 to c8f267b

versions.mk

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

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

1919
# Specify the nvidia-docker2 and nvidia-container-runtime package versions.
2020
# Note: The tag is automatically specified to match LIB_TAG.
@@ -27,4 +27,4 @@ LIBNVIDIA_CONTAINER0_VERSION := 0.10.0+jetpack
2727
CUDA_VERSION := 11.7.1
2828
GOLANG_VERSION := 1.17.8
2929

30-
GIT_COMMIT ?= $(shell git describe --dirty --long --always 2> /dev/null || echo "")
30+
GIT_COMMIT ?= $(shell git describe --match="" --dirty --long --always 2> /dev/null || echo "")

0 commit comments

Comments
 (0)