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

Commit fbf1e42

Browse files
committed
Update changelog for 1.0.0
Closes: #292
1 parent d8f28b6 commit fbf1e42

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.3/nvidia-docker_1.0.0.rc.3-1_amd64.deb
21+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker_1.0.0-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.3/nvidia-docker-1.0.0.rc.3-1.x86_64.rpm
31+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker-1.0.0-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.3/nvidia-docker_1.0.0.rc.3_amd64.tar.xz
42+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker_1.0.0_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.3
12+
PKG_VERS := 1.0.0
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-1) trusty; urgency=low
2+
3+
* Support for Docker 1.13
4+
* Fix CPU affinity reporting on systems where NUMA is disabled (Closes: #198)
5+
* Fix premature EOF in the remote API responses (Closes: #123)
6+
* Add support for the VolumeDriver.Capabilities plugin endpoint
7+
* Enable ppc64le library lookup (Closes: #194)
8+
* Fix parsing of DOCKER_HOST for unix domain sockets (Closes: #119)
9+
10+
-- NVIDIA CORPORATION <[email protected]> Wed, 18 Jan 2017 21:44:42 +0000
11+
112
nvidia-docker (1.0.0~rc.3-1) trusty; urgency=low
213

314
* Support for Docker 1.12

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+
* Wed Jan 18 2017 NVIDIA CORPORATION <[email protected]> 1.0.0-1
77+
- Support for Docker 1.13
78+
- Fix CPU affinity reporting on systems where NUMA is disabled (Closes: #198)
79+
- Fix premature EOF in the remote API responses (Closes: #123)
80+
- Add support for the VolumeDriver.Capabilities plugin endpoint
81+
- Enable ppc64le library lookup (Closes: #194)
82+
- Fix parsing of DOCKER_HOST for unix domain sockets (Closes: #119)
83+
7684
* Fri Jun 17 2016 NVIDIA CORPORATION <[email protected]> 1.0.0~rc.3-1
7785
- Support for Docker 1.12
7886
- Add volume mount options support to the nvidia package

0 commit comments

Comments
 (0)