Skip to content

Commit 01d2c94

Browse files
committed
Update changelog for 1.0.1
1 parent 16fd00a commit 01d2c94

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ bindir ?= $(exec_prefix)/bin
99
CR_NAME := NVIDIA CORPORATION
1010
CR_EMAIL := [email protected]
1111
PKG_NAME := nvidia-docker
12-
PKG_VERS := 1.0.0
12+
PKG_VERS := 1.0.1
1313
PKG_REV := 1
1414
ifneq ($(MAKECMDGOALS),rpm)
1515
PKG_ARCH := amd64

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Assuming the NVIDIA drivers and Docker are properly installed (see [installation
1818
#### _Ubuntu distributions_
1919
```sh
2020
# Install nvidia-docker and nvidia-docker-plugin
21-
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker_1.0.0-1_amd64.deb
21+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.1/nvidia-docker_1.0.1-1_amd64.deb
2222
sudo dpkg -i /tmp/nvidia-docker*.deb && rm /tmp/nvidia-docker*.deb
2323

2424
# Test nvidia-smi
@@ -28,7 +28,7 @@ nvidia-docker run --rm nvidia/cuda nvidia-smi
2828
#### _CentOS distributions_
2929
```sh
3030
# Install nvidia-docker and nvidia-docker-plugin
31-
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker-1.0.0-1.x86_64.rpm
31+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.1/nvidia-docker-1.0.1-1.x86_64.rpm
3232
sudo rpm -i /tmp/nvidia-docker*.rpm && rm /tmp/nvidia-docker*.rpm
3333
sudo systemctl start nvidia-docker
3434

@@ -39,7 +39,7 @@ nvidia-docker run --rm nvidia/cuda nvidia-smi
3939
#### _Other distributions_
4040
```sh
4141
# Install nvidia-docker and nvidia-docker-plugin
42-
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker_1.0.0_amd64.tar.xz
42+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.1/nvidia-docker_1.0.1_amd64.tar.xz
4343
sudo tar --strip-components=1 -C /usr/bin -xvf /tmp/nvidia-docker*.tar.xz && rm /tmp/nvidia-docker*.tar.xz
4444

4545
# Run nvidia-docker-plugin

build/deb/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
nvidia-docker (1.0.1-1) trusty; urgency=low
2+
3+
* Support for Docker 17.03 including EE and CE (Closes: #323, #324)
4+
* Load UVM unconditionally
5+
* Fix Docker argument parsing (Closes: #295)
6+
* Fix images pull output (Closes: #310)
7+
8+
-- NVIDIA CORPORATION <[email protected]> Fri, 03 Mar 2017 00:59:14 +0000
9+
110
nvidia-docker (1.0.0-1) trusty; urgency=low
211

312
* Support for Docker 1.13

build/rpm/SPECS/nvidia-docker.spec

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ fi
7373
%systemd_postun_with_restart %{name}
7474

7575
%changelog
76+
* Fri Mar 03 2017 NVIDIA CORPORATION <[email protected]> 1.0.1-1
77+
- Support for Docker 17.03 including EE and CE (Closes: #323, #324)
78+
- Load UVM unconditionally
79+
- Fix Docker argument parsing (Closes: #295)
80+
- Fix images pull output (Closes: #310)
81+
7682
* Wed Jan 18 2017 NVIDIA CORPORATION <[email protected]> 1.0.0-1
7783
- Support for Docker 1.13
7884
- Fix CPU affinity reporting on systems where NUMA is disabled (Closes: #198)

0 commit comments

Comments
 (0)