Skip to content

Commit 4a61845

Browse files
committed
Update changelogs for v1.0.0-alpha.3
1 parent 2bc6421 commit 4a61845

File tree

3 files changed

+53
-20
lines changed

3 files changed

+53
-20
lines changed

pkg/deb/changelog

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
libnvidia-container (1.0.0~alpha.3-1) UNRELEASED; urgency=medium
2+
3+
* d268f8f Improve error message if driver installed in the container
4+
* 3fdac29 Add optional support for libelf from the elfutils project
5+
* 584bca5 Remove top directory bind mounts to prevent EXDEV errors
6+
* c6dc820 Add info command to nvidia-container-cli
7+
* 44b74ee Add device model to the device informations
8+
* cbdd58f Strip RPC prefix from error messages
9+
* d4ee216 Rework the CLI list command
10+
* b0c4865 Improve the --userspec CLI option and rename it to --user
11+
* e6fa331 Refactor the CLI and split it into multiple files
12+
* fa9853b Bump nvidia-modprobe-utils to 387.34
13+
* 7888296 Move the driver capabilities to the container options
14+
* ea2f780 Add support for EGL device isolation
15+
* b5bffa3 Fix driver procfs remount to work with unpatched kernels
16+
17+
-- NVIDIA CORPORATION <[email protected]> Wed, 10 Jan 2018 16:01:11 -0800
18+
119
libnvidia-container (1.0.0~alpha.2-1) UNRELEASED; urgency=medium
220

321
* b80e4b6 Relax some requirement constraints
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
libnvidia-container.so.1 libnvidia-container1 #MINVER#
2-
NVC_1.0@NVC_1.0 1.0.0~alpha.2
3-
nvc_config_free@NVC_1.0 1.0.0~alpha.2
4-
nvc_config_new@NVC_1.0 1.0.0~alpha.2
5-
nvc_container_config_free@NVC_1.0 1.0.0~alpha.2
6-
nvc_container_config_new@NVC_1.0 1.0.0~alpha.2
7-
nvc_container_free@NVC_1.0 1.0.0~alpha.2
8-
nvc_container_new@NVC_1.0 1.0.0~alpha.2
9-
nvc_context_free@NVC_1.0 1.0.0~alpha.2
10-
nvc_context_new@NVC_1.0 1.0.0~alpha.2
11-
nvc_device_info_free@NVC_1.0 1.0.0~alpha.2
12-
nvc_device_info_new@NVC_1.0 1.0.0~alpha.2
13-
nvc_device_mount@NVC_1.0 1.0.0~alpha.2
14-
nvc_driver_info_free@NVC_1.0 1.0.0~alpha.2
15-
nvc_driver_info_new@NVC_1.0 1.0.0~alpha.2
16-
nvc_driver_mount@NVC_1.0 1.0.0~alpha.2
17-
nvc_error@NVC_1.0 1.0.0~alpha.2
18-
nvc_init@NVC_1.0 1.0.0~alpha.2
19-
nvc_ldcache_update@NVC_1.0 1.0.0~alpha.2
20-
nvc_shutdown@NVC_1.0 1.0.0~alpha.2
21-
nvc_version@NVC_1.0 1.0.0~alpha.2
2+
NVC_1.0@NVC_1.0 1.0.0~alpha.3
3+
nvc_config_free@NVC_1.0 1.0.0~alpha.3
4+
nvc_config_new@NVC_1.0 1.0.0~alpha.3
5+
nvc_container_config_free@NVC_1.0 1.0.0~alpha.3
6+
nvc_container_config_new@NVC_1.0 1.0.0~alpha.3
7+
nvc_container_free@NVC_1.0 1.0.0~alpha.3
8+
nvc_container_new@NVC_1.0 1.0.0~alpha.3
9+
nvc_context_free@NVC_1.0 1.0.0~alpha.3
10+
nvc_context_new@NVC_1.0 1.0.0~alpha.3
11+
nvc_device_info_free@NVC_1.0 1.0.0~alpha.3
12+
nvc_device_info_new@NVC_1.0 1.0.0~alpha.3
13+
nvc_device_mount@NVC_1.0 1.0.0~alpha.3
14+
nvc_driver_info_free@NVC_1.0 1.0.0~alpha.3
15+
nvc_driver_info_new@NVC_1.0 1.0.0~alpha.3
16+
nvc_driver_mount@NVC_1.0 1.0.0~alpha.3
17+
nvc_error@NVC_1.0 1.0.0~alpha.3
18+
nvc_init@NVC_1.0 1.0.0~alpha.3
19+
nvc_ldcache_update@NVC_1.0 1.0.0~alpha.3
20+
nvc_shutdown@NVC_1.0 1.0.0~alpha.3
21+
nvc_version@NVC_1.0 1.0.0~alpha.3

pkg/rpm/SPECS/libnvidia-container.spec

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,21 @@ This package contains command-line tools that facilitate using the library.
8585
%{_bindir}/*
8686

8787
%changelog
88+
* Wed Jan 10 2018 NVIDIA CORPORATION <[email protected]> 1.0.0-0.1.alpha.3
89+
- d268f8f Improve error message if driver installed in the container
90+
- 3fdac29 Add optional support for libelf from the elfutils project
91+
- 584bca5 Remove top directory bind mounts to prevent EXDEV errors
92+
- c6dc820 Add info command to nvidia-container-cli
93+
- 44b74ee Add device model to the device informations
94+
- cbdd58f Strip RPC prefix from error messages
95+
- d4ee216 Rework the CLI list command
96+
- b0c4865 Improve the --userspec CLI option and rename it to --user
97+
- e6fa331 Refactor the CLI and split it into multiple files
98+
- fa9853b Bump nvidia-modprobe-utils to 387.34
99+
- 7888296 Move the driver capabilities to the container options
100+
- ea2f780 Add support for EGL device isolation
101+
- b5bffa3 Fix driver procfs remount to work with unpatched kernels
102+
88103
* Mon Oct 30 2017 NVIDIA CORPORATION <[email protected]> 1.0.0-0.1.alpha.2
89104
- b80e4b6 Relax some requirement constraints
90105
- 3cd1bb6 Handle 32-bit PCI domains

0 commit comments

Comments
 (0)