diff --git a/debian/changelog b/debian/changelog index fd83b16bf59df9bad089ec5a6098580c29837695..5c6b44d2975b576533623832897788f2f67fd467 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +steam-runtime-tools (0.20190926.1-0+steamrt1.1) UNRELEASED; urgency=medium + + * tests: Replace SRT_TEST_ICD_SYSROOT with SRT_TEST_SYSROOT + * Add minimal OS information from os-release(5) + * Add support for ID_LIKE os-release(5) field + * runtime: Use os-release(5) to detect Steam Runtime container/chroot + + -- Simon McVittie <smcv@collabora.com> Thu, 26 Sep 2019 15:52:32 +0100 + steam-runtime-tools (0.20190926.0-0+steamrt1.2) scout; urgency=medium * d/control: Add missing -dev dependency on libjson-glib-dev diff --git a/debian/libsteam-runtime-tools-0-0.symbols b/debian/libsteam-runtime-tools-0-0.symbols index a5748190919c45c3c61fa2c28796b2de32833b2e..e352d12b2d6b9bf640383952e201aac309195110 100644 --- a/debian/libsteam-runtime-tools-0-0.symbols +++ b/debian/libsteam-runtime-tools-0-0.symbols @@ -51,6 +51,15 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER# srt_system_info_check_library@Base 0.20190802.0 srt_system_info_check_locale@Base 0.20190909.0 srt_system_info_dup_expected_runtime_version@Base 0.20190816.0 + srt_system_info_dup_os_build_id@Base 0.20190926.1 + srt_system_info_dup_os_id@Base 0.20190926.1 + srt_system_info_dup_os_id_like@Base 0.20190926.1 + srt_system_info_dup_os_name@Base 0.20190926.1 + srt_system_info_dup_os_pretty_name@Base 0.20190926.1 + srt_system_info_dup_os_variant@Base 0.20190926.1 + srt_system_info_dup_os_variant_id@Base 0.20190926.1 + srt_system_info_dup_os_version_codename@Base 0.20190926.1 + srt_system_info_dup_os_version_id@Base 0.20190926.1 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_data_path@Base 0.20190926.0 diff --git a/meson.build b/meson.build index 249388ec6ec2961a6c6820982c82de013c12869d..a49ca4a923e3daa4d3614c9ed2186597f2797e45 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.20190926.0') +project('steam-runtime-tools', 'c', version : '0.20190926.1') api_major = '0' abi_major = '0' -abi_minor = '20190926.0' +abi_minor = '20190926.1' pkg = import('pkgconfig') gnome = import('gnome')