From 76e4833de3508b01a839a391359284313bb00708 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 20 Nov 2023 09:45:39 -0500 Subject: [PATCH 1/2] devel: Fix symbol versioning number The .11 was wrong. --- src/libostree/libostree-devel.sym | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/libostree/libostree-devel.sym b/src/libostree/libostree-devel.sym index 28d6154f3d..442c4e01b7 100644 --- a/src/libostree/libostree-devel.sym +++ b/src/libostree/libostree-devel.sym @@ -20,6 +20,11 @@ - uncomment the include in Makefile-libostree.am */ +LIBOSTREE_2023.8 { +global: + ostree_sysroot_update_post_copy; +} LIBOSTREE_2023.4; + /* Stub section for the stable release *after* this development one; don't * edit this other than to update the year. This is just a copy/paste * source. Replace $LASTSTABLE with the last stable version, and $NEWVERSION @@ -29,8 +34,3 @@ global: someostree_symbol_deleteme; } LIBOSTREE_2021.$LASTSTABLE; */ - -LIBOSTREE_2023.11 { -global: - ostree_sysroot_update_post_copy; -} LIBOSTREE_2023.4; From 315cbdd38e0c35ff69d06fce74f180ded03d7ef9 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 20 Nov 2023 09:47:40 -0500 Subject: [PATCH 2/2] lib: Don't hardcode year in sample symver section The 2021 was misleading. --- src/libostree/libostree-devel.sym | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libostree/libostree-devel.sym b/src/libostree/libostree-devel.sym index 442c4e01b7..02d2ac2950 100644 --- a/src/libostree/libostree-devel.sym +++ b/src/libostree/libostree-devel.sym @@ -29,8 +29,8 @@ global: * edit this other than to update the year. This is just a copy/paste * source. Replace $LASTSTABLE with the last stable version, and $NEWVERSION * with whatever the next version with new symbols will be. -LIBOSTREE_2021.$NEWVERSION { +LIBOSTREE_$YEAR.$NEWVERSION { global: someostree_symbol_deleteme; -} LIBOSTREE_2021.$LASTSTABLE; +} LIBOSTREE_$YEAR.$LASTSTABLE; */