diff --git a/debian/changelog b/debian/changelog index 1dbe5655170b8be918003f1debd3863c5268323f..779d528bb320446b8d86e691658b6347545e5af2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -steam-runtime-tools (0.20210128.0) UNRELEASED; urgency=medium +steam-runtime-tools (0.20210201.0) scout; urgency=medium [ Simon McVittie ] * pressure-vessel: Make graphics stack provider's /etc/amd available @@ -24,13 +24,15 @@ steam-runtime-tools (0.20210128.0) UNRELEASED; urgency=medium are set [ Ludovico de Nittis ] + * pressure-vessel: Improve speed of container setup by combining multiple + calls to capsule-capture-libs * system-info: Show machine-readable info for each Vulkan PhysicalDevice (each GPU/driver combination, plus software rendering if available). This should help us to see what is going wrong in multi-GPU scenarios. (Helps: steam-runtime#312, steam-runtime#341, steam-runtime#352; maybe also steam-runtime#340) - -- Simon McVittie <smcv@collabora.com> Thu, 28 Jan 2021 11:21:31 +0000 + -- Simon McVittie <smcv@collabora.com> Mon, 01 Feb 2021 19:03:26 +0000 steam-runtime-tools (0.20210126.0) scout; urgency=medium diff --git a/debian/libsteam-runtime-tools-0-0.symbols b/debian/libsteam-runtime-tools-0-0.symbols index f895d953aa704eb316512b236522fa60a92df94d..68e03714ae57190297c1171559ced70b0d01431a 100644 --- a/debian/libsteam-runtime-tools-0-0.symbols +++ b/debian/libsteam-runtime-tools-0-0.symbols @@ -36,7 +36,17 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER# srt_glx_icd_get_library_path@Base 0.20200306.0 srt_glx_icd_get_library_soname@Base 0.20200306.0 srt_glx_icd_get_type@Base 0.20200306.0 + srt_graphics_device_get_api_version@Base 0.20210201.0 + srt_graphics_device_get_device_id@Base 0.20210201.0 + srt_graphics_device_get_device_type@Base 0.20210201.0 + srt_graphics_device_get_driver_version@Base 0.20210201.0 + srt_graphics_device_get_issues@Base 0.20210201.0 + srt_graphics_device_get_messages@Base 0.20210201.0 + srt_graphics_device_get_name@Base 0.20210201.0 + srt_graphics_device_get_type@Base 0.20210201.0 + srt_graphics_device_get_vendor_id@Base 0.20210201.0 srt_graphics_dup_parameters_string@Base 0.20190822.0 + srt_graphics_get_devices@Base 0.20210201.0 srt_graphics_get_exit_status@Base 0.20191209.0 srt_graphics_get_issues@Base 0.20190822.0 srt_graphics_get_messages@Base 0.20190926.0 @@ -189,6 +199,7 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER# srt_vdpau_driver_get_type@Base 0.20200306.0 srt_vdpau_driver_is_extra@Base 0.20200306.0 srt_vdpau_driver_resolve_library_path@Base 0.20200331.1 + srt_vk_physical_device_type_get_type@Base 0.20210201.0 srt_vulkan_icd_check_error@Base 0.20190926.0 srt_vulkan_icd_get_api_version@Base 0.20190926.0 srt_vulkan_icd_get_json_path@Base 0.20190926.0 diff --git a/meson.build b/meson.build index 121ad22173b2064a83d0f99accc4ac653f1eacfb..4421ad0f0ab4d87f251bb38940d6b0fd795ce070 100644 --- a/meson.build +++ b/meson.build @@ -23,7 +23,7 @@ project( 'steam-runtime-tools', 'c', 'cpp', - version : '0.20210126.0', + version : '0.20210201.0', default_options: [ 'c_std=c99', 'cpp_std=c++11', @@ -35,7 +35,7 @@ add_languages('cpp') api_major = '0' abi_major = '0' -abi_minor = '20210126.0' +abi_minor = '20210201.0' pkg = import('pkgconfig') gnome = import('gnome')