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

Commit

Permalink
Update changelog for 1.0.0
Browse files Browse the repository at this point in the history
Closes: #292
  • Loading branch information
3XX0 committed Jan 18, 2017
1 parent d8f28b6 commit fbf1e42
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-rc.3/nvidia-docker_1.0.0.rc.3-1_amd64.deb
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker_1.0.0-1_amd64.deb
sudo dpkg -i /tmp/nvidia-docker*.deb && rm /tmp/nvidia-docker*.deb

# Test nvidia-smi
Expand All @@ -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-rc.3/nvidia-docker-1.0.0.rc.3-1.x86_64.rpm
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker-1.0.0-1.x86_64.rpm
sudo rpm -i /tmp/nvidia-docker*.rpm && rm /tmp/nvidia-docker*.rpm
sudo systemctl start nvidia-docker

Expand All @@ -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-rc.3/nvidia-docker_1.0.0.rc.3_amd64.tar.xz
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0/nvidia-docker_1.0.0_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
Expand Down
2 changes: 1 addition & 1 deletion tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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~rc.3
PKG_VERS := 1.0.0
PKG_REV := 1
ifneq ($(MAKECMDGOALS),rpm)
PKG_ARCH := amd64
Expand Down
11 changes: 11 additions & 0 deletions tools/build/deb/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
nvidia-docker (1.0.0-1) trusty; urgency=low

* Support for Docker 1.13
* Fix CPU affinity reporting on systems where NUMA is disabled (Closes: #198)
* Fix premature EOF in the remote API responses (Closes: #123)
* Add support for the VolumeDriver.Capabilities plugin endpoint
* Enable ppc64le library lookup (Closes: #194)
* Fix parsing of DOCKER_HOST for unix domain sockets (Closes: #119)

-- NVIDIA CORPORATION <digits@nvidia.com> Wed, 18 Jan 2017 21:44:42 +0000

nvidia-docker (1.0.0~rc.3-1) trusty; urgency=low

* Support for Docker 1.12
Expand Down
8 changes: 8 additions & 0 deletions tools/build/rpm/SPECS/nvidia-docker.spec
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ fi
%systemd_postun_with_restart %{name}

%changelog
* Wed Jan 18 2017 NVIDIA CORPORATION <digits@nvidia.com> 1.0.0-1
- Support for Docker 1.13
- Fix CPU affinity reporting on systems where NUMA is disabled (Closes: #198)
- Fix premature EOF in the remote API responses (Closes: #123)
- Add support for the VolumeDriver.Capabilities plugin endpoint
- Enable ppc64le library lookup (Closes: #194)
- Fix parsing of DOCKER_HOST for unix domain sockets (Closes: #119)

* Fri Jun 17 2016 NVIDIA CORPORATION <digits@nvidia.com> 1.0.0~rc.3-1
- Support for Docker 1.12
- Add volume mount options support to the nvidia package
Expand Down

0 comments on commit fbf1e42

Please sign in to comment.