From e9abff621ef84430735e3c2c4848048811081904 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Sun, 7 Sep 2025 14:38:05 +0200 Subject: [PATCH] Use the full project version as library version The library version is used for instance by pkgconf to detect dependency versions, so it makes more sense to use the full project version here rather than a static version string that indicates ABI compatibility --- bstring/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bstring/meson.build b/bstring/meson.build index ed59b36..01a8043 100644 --- a/bstring/meson.build +++ b/bstring/meson.build @@ -3,7 +3,7 @@ install_headers(['bstraux.h', 'bstrlib.h']) libbstring = library( meson.project_name(), ['bstraux.c', 'bstrlib.c'], - version: '1.0.0', + version: meson.project_version(), soversion: '1', include_directories: bstring_inc, install: true,