diff --git a/pkg/deb/changelog b/pkg/deb/changelog index 3adb6bf7662413e4c2e1442f7e2e555c6d738931..53f9e313a1baff7cb45985d037d0be3387245af8 100644 --- a/pkg/deb/changelog +++ b/pkg/deb/changelog @@ -1,3 +1,9 @@ +libnvidia-container (1.0.1-1) UNRELEASED; urgency=medium + + * deccb28 Allow yet more syscalls in ldconfig + + -- NVIDIA CORPORATION Mon, 14 Jan 2019 17:52:52 -0700 + libnvidia-container (1.0.0-1) UNRELEASED; urgency=medium * 35a9f27 Add support for CUDA forward compatibility diff --git a/pkg/deb/libnvidia-container@MAJOR@.symbols b/pkg/deb/libnvidia-container@MAJOR@.symbols index ea880de64b291354ffccdc8785cbef1b5b9c5086..c26759ade2a87f71bee697bd0932bb41f1715657 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 - 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 + NVC_1.0@NVC_1.0 1.0.1 + nvc_config_free@NVC_1.0 1.0.1 + nvc_config_new@NVC_1.0 1.0.1 + nvc_container_config_free@NVC_1.0 1.0.1 + nvc_container_config_new@NVC_1.0 1.0.1 + nvc_container_free@NVC_1.0 1.0.1 + nvc_container_new@NVC_1.0 1.0.1 + nvc_context_free@NVC_1.0 1.0.1 + nvc_context_new@NVC_1.0 1.0.1 + nvc_device_info_free@NVC_1.0 1.0.1 + nvc_device_info_new@NVC_1.0 1.0.1 + nvc_device_mount@NVC_1.0 1.0.1 + nvc_driver_info_free@NVC_1.0 1.0.1 + nvc_driver_info_new@NVC_1.0 1.0.1 + nvc_driver_mount@NVC_1.0 1.0.1 + nvc_error@NVC_1.0 1.0.1 + nvc_init@NVC_1.0 1.0.1 + nvc_ldcache_update@NVC_1.0 1.0.1 + nvc_shutdown@NVC_1.0 1.0.1 + nvc_version@NVC_1.0 1.0.1 diff --git a/pkg/rpm/SPECS/libnvidia-container.spec b/pkg/rpm/SPECS/libnvidia-container.spec index c3bf0c746b36f9516a5ec46960812de747e2a5f7..c1275783dbecbb2263477781b5dbe936d904c783 100644 --- a/pkg/rpm/SPECS/libnvidia-container.spec +++ b/pkg/rpm/SPECS/libnvidia-container.spec @@ -85,6 +85,9 @@ This package contains command-line tools that facilitate using the library. %{_bindir}/* %changelog +* Mon Jan 14 2019 NVIDIA CORPORATION 1.0.1-1 +- deccb28 Allow yet more syscalls in ldconfig + * 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 diff --git a/src/nvc.h b/src/nvc.h index 394f4fa3f4f6851fc2efcf5a17cdf7d74a7f45af..994972adb080eea7a5d27044823d3be6c21dc71a 100644 --- a/src/nvc.h +++ b/src/nvc.h @@ -15,8 +15,8 @@ extern "C" { #define NVC_MAJOR 1 #define NVC_MINOR 0 -#define NVC_PATCH 0 -#define NVC_VERSION "1.0.0" +#define NVC_PATCH 1 +#define NVC_VERSION "1.0.1" #define NVC_ARG_MAX 256