diff --git a/debian/changelog b/debian/changelog index fa3b2198842d86bff8c2e0528972f3ff3d04a847..0adaf40eab98a320ff1d1cf2e623fe9cb78f34cc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +steam-runtime-tools (0.20190816.0-0+steamrt1.1) scout; urgency=medium + + [ Simon McVittie ] + * inspect-library: Don't produce malformed JSON if the ABI is not known + * library: Guard against not knowing missing or misversioned symbols + * library: Set UNKNOWN_EXPECTATIONS issue if we lack a symbols file + * bin: Check for shared libraries even if we don't know what to expect + * system-info: Look for expectations in /usr/lib/steamrt by default + * Add some mechanisms to facilitate design-for-test + + [ Ludovico de Nittis ] + * Add checks for problems with the Steam Installation and the Runtime + + -- Simon McVittie <smcv@collabora.com> Fri, 16 Aug 2019 12:38:22 +0100 + steam-runtime-tools (0.20190806.0-0+steamrt1.1) scout; urgency=medium [ Ludovico de Nittis ] diff --git a/debian/libsteam-runtime-tools-0-0.symbols b/debian/libsteam-runtime-tools-0-0.symbols index 8892000719bed446490b2db205d6814e8c582466..5eb297483e92c00e47e6bcedf58e0071783a7ae5 100644 --- a/debian/libsteam-runtime-tools-0-0.symbols +++ b/debian/libsteam-runtime-tools-0-0.symbols @@ -13,9 +13,20 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER# srt_library_get_type@Base 0.20190801.0 srt_library_issues_get_type@Base 0.20190801.0 srt_library_symbols_format_get_type@Base 0.20190801.0 + srt_runtime_issues_get_type@Base 0.20190816.0 + srt_steam_issues_get_type@Base 0.20190816.0 srt_system_info_can_run@Base 0.20190801.0 srt_system_info_can_write_to_uinput@Base 0.20190801.0 srt_system_info_check_libraries@Base 0.20190802.0 srt_system_info_check_library@Base 0.20190802.0 + srt_system_info_dup_expected_runtime_version@Base 0.20190816.0 + srt_system_info_dup_runtime_path@Base 0.20190816.0 + srt_system_info_dup_runtime_version@Base 0.20190816.0 + srt_system_info_dup_steam_installation_path@Base 0.20190816.0 + srt_system_info_get_runtime_issues@Base 0.20190816.0 + srt_system_info_get_steam_issues@Base 0.20190816.0 srt_system_info_get_type@Base 0.20190801.0 srt_system_info_new@Base 0.20190801.0 + srt_system_info_set_environ@Base 0.20190816.0 + srt_system_info_set_expected_runtime_version@Base 0.20190816.0 + srt_system_info_set_helpers_path@Base 0.20190816.0 diff --git a/meson.build b/meson.build index 0ed78ea72234f0a88123bf035f1c7fea1b95f797..2aca368e69f0e7a4d01847bd4ec1761ef7c322a6 100644 --- a/meson.build +++ b/meson.build @@ -21,11 +21,11 @@ # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -project('steam-runtime-tools', 'c', version : '0.20190801.0') +project('steam-runtime-tools', 'c', version : '0.20190816.0') api_major = '0' abi_major = '0' -abi_minor = '20190801.0' +abi_minor = '20190816.0' pkg = import('pkgconfig') gnome = import('gnome')