diff --git a/pkg/deb/changelog b/pkg/deb/changelog index fbd2fff8..6358c177 100644 --- a/pkg/deb/changelog +++ b/pkg/deb/changelog @@ -1,3 +1,9 @@ +libnvidia-container (1.5.1-1) UNRELEASED; urgency=medium + + * Promote 1.5.1-0.1.rc.1 to 1.5.1-1 + + -- NVIDIA CORPORATION Mon, 20 Sep 2021 15:24:36 +0200 + libnvidia-container (1.5.1~rc.1-1) UNRELEASED; urgency=medium * [BUGFIX] Respect root setting when resolving GSP firmware path diff --git a/pkg/deb/libnvidia-container@MAJOR@.symbols b/pkg/deb/libnvidia-container@MAJOR@.symbols index 0fbf2c55..557340c7 100644 --- a/pkg/deb/libnvidia-container@MAJOR@.symbols +++ b/pkg/deb/libnvidia-container@MAJOR@.symbols @@ -1,27 +1,27 @@ libnvidia-container.so.1 libnvidia-container1 #MINVER# - NVC_1.0@NVC_1.0 1.5.1~rc.1 - nvc_config_free@NVC_1.0 1.5.1~rc.1 - nvc_config_new@NVC_1.0 1.5.1~rc.1 - nvc_container_config_free@NVC_1.0 1.5.1~rc.1 - nvc_container_config_new@NVC_1.0 1.5.1~rc.1 - nvc_container_free@NVC_1.0 1.5.1~rc.1 - nvc_container_new@NVC_1.0 1.5.1~rc.1 - nvc_context_free@NVC_1.0 1.5.1~rc.1 - nvc_context_new@NVC_1.0 1.5.1~rc.1 - nvc_device_info_free@NVC_1.0 1.5.1~rc.1 - nvc_device_info_new@NVC_1.0 1.5.1~rc.1 - nvc_nvcaps_style@NVC_1.0 1.5.1~rc.1 - nvc_nvcaps_device_from_proc_path@NVC_1.0 1.5.1~rc.1 - nvc_device_mount@NVC_1.0 1.5.1~rc.1 - nvc_mig_device_access_caps_mount@NVC_1.0 1.5.1~rc.1 - nvc_mig_config_global_caps_mount@NVC_1.0 1.5.1~rc.1 - nvc_mig_monitor_global_caps_mount@NVC_1.0 1.5.1~rc.1 - nvc_device_mig_caps_mount@NVC_1.0 1.5.1~rc.1 - nvc_driver_info_free@NVC_1.0 1.5.1~rc.1 - nvc_driver_info_new@NVC_1.0 1.5.1~rc.1 - nvc_driver_mount@NVC_1.0 1.5.1~rc.1 - nvc_error@NVC_1.0 1.5.1~rc.1 - nvc_init@NVC_1.0 1.5.1~rc.1 - nvc_ldcache_update@NVC_1.0 1.5.1~rc.1 - nvc_shutdown@NVC_1.0 1.5.1~rc.1 - nvc_version@NVC_1.0 1.5.1~rc.1 + NVC_1.0@NVC_1.0 1.5.1 + nvc_config_free@NVC_1.0 1.5.1 + nvc_config_new@NVC_1.0 1.5.1 + nvc_container_config_free@NVC_1.0 1.5.1 + nvc_container_config_new@NVC_1.0 1.5.1 + nvc_container_free@NVC_1.0 1.5.1 + nvc_container_new@NVC_1.0 1.5.1 + nvc_context_free@NVC_1.0 1.5.1 + nvc_context_new@NVC_1.0 1.5.1 + nvc_device_info_free@NVC_1.0 1.5.1 + nvc_device_info_new@NVC_1.0 1.5.1 + nvc_nvcaps_style@NVC_1.0 1.5.1 + nvc_nvcaps_device_from_proc_path@NVC_1.0 1.5.1 + nvc_device_mount@NVC_1.0 1.5.1 + nvc_mig_device_access_caps_mount@NVC_1.0 1.5.1 + nvc_mig_config_global_caps_mount@NVC_1.0 1.5.1 + nvc_mig_monitor_global_caps_mount@NVC_1.0 1.5.1 + nvc_device_mig_caps_mount@NVC_1.0 1.5.1 + nvc_driver_info_free@NVC_1.0 1.5.1 + nvc_driver_info_new@NVC_1.0 1.5.1 + nvc_driver_mount@NVC_1.0 1.5.1 + nvc_error@NVC_1.0 1.5.1 + nvc_init@NVC_1.0 1.5.1 + nvc_ldcache_update@NVC_1.0 1.5.1 + nvc_shutdown@NVC_1.0 1.5.1 + nvc_version@NVC_1.0 1.5.1 diff --git a/pkg/rpm/SPECS/libnvidia-container.spec b/pkg/rpm/SPECS/libnvidia-container.spec index 86f4be7d..d9427d32 100644 --- a/pkg/rpm/SPECS/libnvidia-container.spec +++ b/pkg/rpm/SPECS/libnvidia-container.spec @@ -99,6 +99,9 @@ This package contains command-line tools that facilitate using the library. %{_bindir}/* %changelog +* Mon Sep 20 2021 NVIDIA CORPORATION 1.5.1-1 +- Promote 1.5.1-0.1.rc.1 to 1.5.1-1 + * Thu Sep 02 2021 NVIDIA CORPORATION 1.5.1-0.1.rc.1 - [BUGFIX] Respect root setting when resolving GSP firmware path - [BUILD] Add support for SOURCE_DATE_EPOCH to specify build date diff --git a/src/nvc.h b/src/nvc.h index c79e23c7..022f8d68 100644 --- a/src/nvc.h +++ b/src/nvc.h @@ -21,8 +21,8 @@ extern "C" { // For stable releases, this should be defined as empty. // For release candidates, this should be defined with the format "rc.1" // The version string NVC_VERSION should also be updated accordingly, using a ~ separator where applicable. -#define NVC_TAG "rc.1" -#define NVC_VERSION "1.5.1~rc.1" +#define NVC_TAG +#define NVC_VERSION "1.5.1" #define NVC_ARG_MAX 256