Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.

Commit 101b436

Browse files
committed
Update changelog for 1.0.0~rc.3
1 parent 09ab8cb commit 101b436

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

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-rc.2/nvidia-docker_1.0.0.rc.2-1_amd64.deb
21+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc.3/nvidia-docker_1.0.0.rc.3-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-rc.2/nvidia-docker-1.0.0.rc.2-1.x86_64.rpm
31+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc.3/nvidia-docker-1.0.0.rc.3-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-rc.2/nvidia-docker_1.0.0.rc.2_amd64.tar.xz
42+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc.3/nvidia-docker_1.0.0.rc.3_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

tools/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~rc.2
12+
PKG_VERS := 1.0.0~rc.3
1313
PKG_REV := 1
1414
ifneq ($(MAKECMDGOALS),rpm)
1515
PKG_ARCH := amd64

tools/build/deb/changelog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
nvidia-docker (1.0.0~rc.3-1) trusty; urgency=low
2+
3+
* Support for Docker 1.12
4+
* Add volume mount options support to the nvidia package
5+
* Export the nvidia-uvm-tools device
6+
* Provide the libcuda.so symlink as part of the driver volume (Closes: #103)
7+
* Use relative symlinks inside the volumes
8+
* Disable CUDA unified memory
9+
10+
-- NVIDIA CORPORATION <[email protected]> Fri, 17 Jun 2016 22:08:11 +0000
11+
112
nvidia-docker (1.0.0~rc.2-1) trusty; urgency=low
213

314
* Allow UUIDs to be used in NV_GPU and docker/cli RestAPI endpoint

tools/build/rpm/SPECS/nvidia-docker.spec

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

7575
%changelog
76+
* Fri Jun 17 2016 NVIDIA CORPORATION <[email protected]> 1.0.0~rc.3-1
77+
- Support for Docker 1.12
78+
- Add volume mount options support to the nvidia package
79+
- Export the nvidia-uvm-tools device
80+
- Provide the libcuda.so symlink as part of the driver volume (Closes: #103)
81+
- Use relative symlinks inside the volumes
82+
- Disable CUDA unified memory
83+
7684
* Sat May 28 2016 NVIDIA CORPORATION <[email protected]> 1.0.0~rc.2-1
7785
- Allow UUIDs to be used in NV_GPU and docker/cli RestAPI endpoint
7886
- Change the plugin usage with version information (Closes: #90)

0 commit comments

Comments
 (0)