From 01d2c9436620d7dde4672e414698afe6da4a282f Mon Sep 17 00:00:00 2001 From: Jonathan Calmels Date: Thu, 2 Mar 2017 18:15:33 -0800 Subject: [PATCH] Update changelog for 1.0.1 --- Makefile | 2 +- README.md | 6 +++--- build/deb/changelog | 9 +++++++++ build/rpm/SPECS/nvidia-docker.spec | 6 ++++++ 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e17e2ab0..e6ceb096 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ bindir ?= $(exec_prefix)/bin CR_NAME := NVIDIA CORPORATION CR_EMAIL := digits@nvidia.com PKG_NAME := nvidia-docker -PKG_VERS := 1.0.0 +PKG_VERS := 1.0.1 PKG_REV := 1 ifneq ($(MAKECMDGOALS),rpm) PKG_ARCH := amd64 diff --git a/README.md b/README.md index 9e93ff4d..8bb84472 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Assuming the NVIDIA drivers and Docker are properly installed (see [installation #### _Ubuntu distributions_ ```sh # Install nvidia-docker and nvidia-docker-plugin -wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker_1.0.0-1_amd64.deb +wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.1/nvidia-docker_1.0.1-1_amd64.deb sudo dpkg -i /tmp/nvidia-docker*.deb && rm /tmp/nvidia-docker*.deb # Test nvidia-smi @@ -28,7 +28,7 @@ nvidia-docker run --rm nvidia/cuda nvidia-smi #### _CentOS distributions_ ```sh # Install nvidia-docker and nvidia-docker-plugin -wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker-1.0.0-1.x86_64.rpm +wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.1/nvidia-docker-1.0.1-1.x86_64.rpm sudo rpm -i /tmp/nvidia-docker*.rpm && rm /tmp/nvidia-docker*.rpm sudo systemctl start nvidia-docker @@ -39,7 +39,7 @@ nvidia-docker run --rm nvidia/cuda nvidia-smi #### _Other distributions_ ```sh # Install nvidia-docker and nvidia-docker-plugin -wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker_1.0.0_amd64.tar.xz +wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.1/nvidia-docker_1.0.1_amd64.tar.xz sudo tar --strip-components=1 -C /usr/bin -xvf /tmp/nvidia-docker*.tar.xz && rm /tmp/nvidia-docker*.tar.xz # Run nvidia-docker-plugin diff --git a/build/deb/changelog b/build/deb/changelog index af9a001a..614f5cee 100644 --- a/build/deb/changelog +++ b/build/deb/changelog @@ -1,3 +1,12 @@ +nvidia-docker (1.0.1-1) trusty; urgency=low + + * Support for Docker 17.03 including EE and CE (Closes: #323, #324) + * Load UVM unconditionally + * Fix Docker argument parsing (Closes: #295) + * Fix images pull output (Closes: #310) + + -- NVIDIA CORPORATION Fri, 03 Mar 2017 00:59:14 +0000 + nvidia-docker (1.0.0-1) trusty; urgency=low * Support for Docker 1.13 diff --git a/build/rpm/SPECS/nvidia-docker.spec b/build/rpm/SPECS/nvidia-docker.spec index 6a0a636d..7e4900a2 100644 --- a/build/rpm/SPECS/nvidia-docker.spec +++ b/build/rpm/SPECS/nvidia-docker.spec @@ -73,6 +73,12 @@ fi %systemd_postun_with_restart %{name} %changelog +* Fri Mar 03 2017 NVIDIA CORPORATION 1.0.1-1 +- Support for Docker 17.03 including EE and CE (Closes: #323, #324) +- Load UVM unconditionally +- Fix Docker argument parsing (Closes: #295) +- Fix images pull output (Closes: #310) + * Wed Jan 18 2017 NVIDIA CORPORATION 1.0.0-1 - Support for Docker 1.13 - Fix CPU affinity reporting on systems where NUMA is disabled (Closes: #198)