Skip to content
Snippets Groups Projects
Commit f1229dc2 authored by Simon McVittie's avatar Simon McVittie
Browse files

Prepare v0.20190816.0


This is an example of the procedure that I described in CONTRIBUTING.md
in the previous commit.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 477e7e9f
Branches
Tags v0.20190816.0
No related merge requests found
Pipeline #1466 passed
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 steam-runtime-tools (0.20190806.0-0+steamrt1.1) scout; urgency=medium
[ Ludovico de Nittis ] [ Ludovico de Nittis ]
......
...@@ -13,9 +13,20 @@ libsteam-runtime-tools-0.so.0 libsteam-runtime-tools-0-0 #MINVER# ...@@ -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_get_type@Base 0.20190801.0
srt_library_issues_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_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_run@Base 0.20190801.0
srt_system_info_can_write_to_uinput@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_libraries@Base 0.20190802.0
srt_system_info_check_library@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_get_type@Base 0.20190801.0
srt_system_info_new@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
...@@ -21,11 +21,11 @@ ...@@ -21,11 +21,11 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # 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' api_major = '0'
abi_major = '0' abi_major = '0'
abi_minor = '20190801.0' abi_minor = '20190816.0'
pkg = import('pkgconfig') pkg = import('pkgconfig')
gnome = import('gnome') gnome = import('gnome')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment