From f1229dc25e936b45fca665be092a128d43e36d96 Mon Sep 17 00:00:00 2001 From: Simon McVittie <smcv@collabora.com> Date: Fri, 16 Aug 2019 12:39:05 +0100 Subject: [PATCH] Prepare v0.20190816.0 This is an example of the procedure that I described in CONTRIBUTING.md in the previous commit. Signed-off-by: Simon McVittie <smcv@collabora.com> --- debian/changelog | 15 +++++++++++++++ debian/libsteam-runtime-tools-0-0.symbols | 11 +++++++++++ meson.build | 4 ++-- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index fa3b21988..0adaf40ea 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 889200071..5eb297483 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 0ed78ea72..2aca368e6 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') -- GitLab