Skip to content

Commit 881c88e

Browse files
committed
Update changelogs for v1.0.0
1 parent 35a9f27 commit 881c88e

File tree

4 files changed

+44
-23
lines changed

4 files changed

+44
-23
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Refer to the [repository configuration](https://nvidia.github.io/libnvidia-conta
1717
With Docker:
1818
```bash
1919
# Generate packages for a given distribution in the dist/ directory
20-
make docker-ubuntu:16.04 TAG=rc.2
20+
make docker-ubuntu:16.04
2121
````
2222

2323
Without Docker:

pkg/deb/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
libnvidia-container (1.0.0-1) UNRELEASED; urgency=medium
2+
3+
* 35a9f27 Add support for CUDA forward compatibility
4+
* ebed710 Add device brand to the device informations and requirements
5+
* a141a7a Handle 32-bit PCI domains in procfs
6+
* 391c4b6 Preload glibc libraries before switching root
7+
* bcf69c6 Bump libtirpc to 1.1.4
8+
* 30aec17 Bump nvidia-modprobe-utils to 396.51
9+
* d05745f Bump the address space limits for ldconfig
10+
11+
-- NVIDIA CORPORATION <[email protected]> Thu, 20 Sep 2018 11:52:52 -0700
12+
113
libnvidia-container (1.0.0~rc.2-1) UNRELEASED; urgency=medium
214

315
* 7ea554a Rework capabilities to support more unprivileged use-cases
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~rc.2
3-
nvc_config_free@NVC_1.0 1.0.0~rc.2
4-
nvc_config_new@NVC_1.0 1.0.0~rc.2
5-
nvc_container_config_free@NVC_1.0 1.0.0~rc.2
6-
nvc_container_config_new@NVC_1.0 1.0.0~rc.2
7-
nvc_container_free@NVC_1.0 1.0.0~rc.2
8-
nvc_container_new@NVC_1.0 1.0.0~rc.2
9-
nvc_context_free@NVC_1.0 1.0.0~rc.2
10-
nvc_context_new@NVC_1.0 1.0.0~rc.2
11-
nvc_device_info_free@NVC_1.0 1.0.0~rc.2
12-
nvc_device_info_new@NVC_1.0 1.0.0~rc.2
13-
nvc_device_mount@NVC_1.0 1.0.0~rc.2
14-
nvc_driver_info_free@NVC_1.0 1.0.0~rc.2
15-
nvc_driver_info_new@NVC_1.0 1.0.0~rc.2
16-
nvc_driver_mount@NVC_1.0 1.0.0~rc.2
17-
nvc_error@NVC_1.0 1.0.0~rc.2
18-
nvc_init@NVC_1.0 1.0.0~rc.2
19-
nvc_ldcache_update@NVC_1.0 1.0.0~rc.2
20-
nvc_shutdown@NVC_1.0 1.0.0~rc.2
21-
nvc_version@NVC_1.0 1.0.0~rc.2
2+
NVC_1.0@NVC_1.0 1.0.0
3+
nvc_config_free@NVC_1.0 1.0.0
4+
nvc_config_new@NVC_1.0 1.0.0
5+
nvc_container_config_free@NVC_1.0 1.0.0
6+
nvc_container_config_new@NVC_1.0 1.0.0
7+
nvc_container_free@NVC_1.0 1.0.0
8+
nvc_container_new@NVC_1.0 1.0.0
9+
nvc_context_free@NVC_1.0 1.0.0
10+
nvc_context_new@NVC_1.0 1.0.0
11+
nvc_device_info_free@NVC_1.0 1.0.0
12+
nvc_device_info_new@NVC_1.0 1.0.0
13+
nvc_device_mount@NVC_1.0 1.0.0
14+
nvc_driver_info_free@NVC_1.0 1.0.0
15+
nvc_driver_info_new@NVC_1.0 1.0.0
16+
nvc_driver_mount@NVC_1.0 1.0.0
17+
nvc_error@NVC_1.0 1.0.0
18+
nvc_init@NVC_1.0 1.0.0
19+
nvc_ldcache_update@NVC_1.0 1.0.0
20+
nvc_shutdown@NVC_1.0 1.0.0
21+
nvc_version@NVC_1.0 1.0.0

pkg/rpm/SPECS/libnvidia-container.spec

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Packager: NVIDIA CORPORATION <[email protected]>
55
URL: https://github.com/NVIDIA/libnvidia-container
66
BuildRequires: make
77
Version: %{_version}
8-
Release: 0.1%{?_tag:.%_tag}
8+
Release: 1%{?_tag:.%_tag}
99
Summary: NVIDIA container runtime library
1010
%description
1111
The nvidia-container library provides an interface to configure GNU/Linux
@@ -72,7 +72,7 @@ This package contains the debugging symbols for the library.
7272
%{_prefix}/lib/debug%{_libdir}/lib*.so.*
7373

7474
%package tools
75-
Requires: %{name}%{_major}%{?_isa} >= %{version}-%{release}
75+
Requires: %{name}%{_major}%{?_isa} >= %{version}-1, %{name}%{_major}%{?_isa} >= %{version}-%{release}
7676
Summary: NVIDIA container runtime library (command-line tools)
7777
%description tools
7878
The nvidia-container library provides an interface to configure GNU/Linux
@@ -85,6 +85,15 @@ This package contains command-line tools that facilitate using the library.
8585
%{_bindir}/*
8686

8787
%changelog
88+
* Thu Sep 20 2018 NVIDIA CORPORATION <[email protected]> 1.0.0-1
89+
- 35a9f27 Add support for CUDA forward compatibility
90+
- ebed710 Add device brand to the device informations and requirements
91+
- a141a7a Handle 32-bit PCI domains in procfs
92+
- 391c4b6 Preload glibc libraries before switching root
93+
- bcf69c6 Bump libtirpc to 1.1.4
94+
- 30aec17 Bump nvidia-modprobe-utils to 396.51
95+
- d05745f Bump the address space limits for ldconfig
96+
8897
* Mon Jun 11 2018 NVIDIA CORPORATION <[email protected]> 1.0.0-0.1.rc.2
8998
- 7ea554a Rework capabilities to support more unprivileged use-cases
9099
- f06cbbb Fix driver process DEATHSIG teardown

0 commit comments

Comments
 (0)