diff --git a/debian/changelog b/debian/changelog index f4edf9712c23185c93bc622a88aabe728d8f8046..e3a7b1aadba7b0fb73236049942083c071191c1e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,13 +1,17 @@ -steam-runtime-tools (0.20200304.0-0+steamrt1.1) UNRELEASED; urgency=medium +steam-runtime-tools (0.20200306.0-0+steamrt1.1) UNRELEASED; urgency=medium [ Ludovico de Nittis ] - * meson: remove redundant Wall and Wextra flags - * Move indirect_strcmp0 to utils - * Log driver-selection environment variables * Enumerate VDPAU drivers + * Enumerate GLX ICDs + * Log driver-selection environment variables * Add check-vdpau helper + * Add check-va-api helper + * meson: remove redundant Wall and Wextra flags + * Move indirect_strcmp0 to utils + * Move rm_rf to utils.c [ Simon McVittie ] + * system-info: Add basic container detection * build: Belatedly update version number in meson.build * Fail build if version number in meson.build hasn't been updated * system-info: Make SRT_DRIVER_FLAGS_NONE the absence of flags @@ -15,8 +19,16 @@ steam-runtime-tools (0.20200304.0-0+steamrt1.1) UNRELEASED; urgency=medium * .gitignore: Ignore several common Meson build directories * build: Use a loop to reduce repetition when compiling shaders * tests: Use loops to build mock helpers + * bin: Generalize jsonify_enum() + * bin: Factor out jsonify_os_release + * system-info: Make sysroot a first-class member of the object + * Combine common code for dealing with graphics modules + + [ Jeremy Whiting ] + * If wflinfo or check-gl fails, run a second time with + LIBGL_DEBUG=verbose set - -- Simon McVittie <smcv@collabora.com> Wed, 04 Mar 2020 14:08:19 +0000 + -- Simon McVittie <smcv@collabora.com> Fri, 06 Mar 2020 16:51:22 +0000 steam-runtime-tools (0.20200109.0-0+steamrt1.1) scout; urgency=medium diff --git a/meson.build b/meson.build index 8338e753b087939ab89d0f542b20d69305776730..e1840a75ff8e3df3b2fdbc028a9a067937b7612e 100644 --- a/meson.build +++ b/meson.build @@ -23,7 +23,7 @@ project( 'steam-runtime-tools', 'c', - version : '0.20200304.0', + version : '0.20200306.0', default_options: [ 'c_std=c99', 'cpp_std=c++11', @@ -34,7 +34,7 @@ add_languages('cpp') api_major = '0' abi_major = '0' -abi_minor = '20200109.0' +abi_minor = '20200306.0' pkg = import('pkgconfig') gnome = import('gnome')