diff --git a/README.md b/README.md index c5e7b3408b4d8deed3f852174c63894e4b860e17..2978c20c063011dbcdbaf69027a74d259c689dcd 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Refer to the [repository configuration](https://nvidia.github.io/libnvidia-conta With Docker: ```bash # Generate packages for a given distribution in the dist/ directory -make docker-ubuntu:16.04 TAG=rc.2 +make docker-ubuntu:16.04 ```` Without Docker: diff --git a/pkg/deb/changelog b/pkg/deb/changelog index 7e1426769295088af8250a300c9dec0d458549e9..3adb6bf7662413e4c2e1442f7e2e555c6d738931 100644 --- a/pkg/deb/changelog +++ b/pkg/deb/changelog @@ -1,3 +1,15 @@ +libnvidia-container (1.0.0-1) UNRELEASED; urgency=medium + + * 35a9f27 Add support for CUDA forward compatibility + * ebed710 Add device brand to the device informations and requirements + * a141a7a Handle 32-bit PCI domains in procfs + * 391c4b6 Preload glibc libraries before switching root + * bcf69c6 Bump libtirpc to 1.1.4 + * 30aec17 Bump nvidia-modprobe-utils to 396.51 + * d05745f Bump the address space limits for ldconfig + + -- NVIDIA CORPORATION Thu, 20 Sep 2018 11:52:52 -0700 + libnvidia-container (1.0.0~rc.2-1) UNRELEASED; urgency=medium * 7ea554a Rework capabilities to support more unprivileged use-cases diff --git a/pkg/deb/libnvidia-container@MAJOR@.symbols b/pkg/deb/libnvidia-container@MAJOR@.symbols index f0a7684aad36ec06a6cf4299623c4d70c6cb5884..ea880de64b291354ffccdc8785cbef1b5b9c5086 100644 --- a/pkg/deb/libnvidia-container@MAJOR@.symbols +++ b/pkg/deb/libnvidia-container@MAJOR@.symbols @@ -1,21 +1,21 @@ libnvidia-container.so.1 libnvidia-container1 #MINVER# - NVC_1.0@NVC_1.0 1.0.0~rc.2 - nvc_config_free@NVC_1.0 1.0.0~rc.2 - nvc_config_new@NVC_1.0 1.0.0~rc.2 - nvc_container_config_free@NVC_1.0 1.0.0~rc.2 - nvc_container_config_new@NVC_1.0 1.0.0~rc.2 - nvc_container_free@NVC_1.0 1.0.0~rc.2 - nvc_container_new@NVC_1.0 1.0.0~rc.2 - nvc_context_free@NVC_1.0 1.0.0~rc.2 - nvc_context_new@NVC_1.0 1.0.0~rc.2 - nvc_device_info_free@NVC_1.0 1.0.0~rc.2 - nvc_device_info_new@NVC_1.0 1.0.0~rc.2 - nvc_device_mount@NVC_1.0 1.0.0~rc.2 - nvc_driver_info_free@NVC_1.0 1.0.0~rc.2 - nvc_driver_info_new@NVC_1.0 1.0.0~rc.2 - nvc_driver_mount@NVC_1.0 1.0.0~rc.2 - nvc_error@NVC_1.0 1.0.0~rc.2 - nvc_init@NVC_1.0 1.0.0~rc.2 - nvc_ldcache_update@NVC_1.0 1.0.0~rc.2 - nvc_shutdown@NVC_1.0 1.0.0~rc.2 - nvc_version@NVC_1.0 1.0.0~rc.2 + NVC_1.0@NVC_1.0 1.0.0 + nvc_config_free@NVC_1.0 1.0.0 + nvc_config_new@NVC_1.0 1.0.0 + nvc_container_config_free@NVC_1.0 1.0.0 + nvc_container_config_new@NVC_1.0 1.0.0 + nvc_container_free@NVC_1.0 1.0.0 + nvc_container_new@NVC_1.0 1.0.0 + nvc_context_free@NVC_1.0 1.0.0 + nvc_context_new@NVC_1.0 1.0.0 + nvc_device_info_free@NVC_1.0 1.0.0 + nvc_device_info_new@NVC_1.0 1.0.0 + nvc_device_mount@NVC_1.0 1.0.0 + nvc_driver_info_free@NVC_1.0 1.0.0 + nvc_driver_info_new@NVC_1.0 1.0.0 + nvc_driver_mount@NVC_1.0 1.0.0 + nvc_error@NVC_1.0 1.0.0 + nvc_init@NVC_1.0 1.0.0 + nvc_ldcache_update@NVC_1.0 1.0.0 + nvc_shutdown@NVC_1.0 1.0.0 + nvc_version@NVC_1.0 1.0.0 diff --git a/pkg/rpm/SPECS/libnvidia-container.spec b/pkg/rpm/SPECS/libnvidia-container.spec index baf9fb3bf158f751de35a7feb80c41808898ed59..c3bf0c746b36f9516a5ec46960812de747e2a5f7 100644 --- a/pkg/rpm/SPECS/libnvidia-container.spec +++ b/pkg/rpm/SPECS/libnvidia-container.spec @@ -5,7 +5,7 @@ Packager: NVIDIA CORPORATION URL: https://github.com/NVIDIA/libnvidia-container BuildRequires: make Version: %{_version} -Release: 0.1%{?_tag:.%_tag} +Release: 1%{?_tag:.%_tag} Summary: NVIDIA container runtime library %description The nvidia-container library provides an interface to configure GNU/Linux @@ -72,7 +72,7 @@ This package contains the debugging symbols for the library. %{_prefix}/lib/debug%{_libdir}/lib*.so.* %package tools -Requires: %{name}%{_major}%{?_isa} >= %{version}-%{release} +Requires: %{name}%{_major}%{?_isa} >= %{version}-1, %{name}%{_major}%{?_isa} >= %{version}-%{release} Summary: NVIDIA container runtime library (command-line tools) %description tools 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. %{_bindir}/* %changelog +* Thu Sep 20 2018 NVIDIA CORPORATION 1.0.0-1 +- 35a9f27 Add support for CUDA forward compatibility +- ebed710 Add device brand to the device informations and requirements +- a141a7a Handle 32-bit PCI domains in procfs +- 391c4b6 Preload glibc libraries before switching root +- bcf69c6 Bump libtirpc to 1.1.4 +- 30aec17 Bump nvidia-modprobe-utils to 396.51 +- d05745f Bump the address space limits for ldconfig + * Mon Jun 11 2018 NVIDIA CORPORATION 1.0.0-0.1.rc.2 - 7ea554a Rework capabilities to support more unprivileged use-cases - f06cbbb Fix driver process DEATHSIG teardown