From 684afeef572e5e2e0063b7b88c513332aa1730f3 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Sat, 16 Sep 2023 16:09:24 -0700 Subject: [PATCH] build: fix release builds We are dropping the micro component going forward. --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 94ffaf25..f3e0c61d 100644 --- a/src/meson.build +++ b/src/meson.build @@ -8,7 +8,7 @@ if sysprof_version[1] in ['alpha', 'beta', 'rc'] endif sysprof_version_conf.set('MAJOR_VERSION', sysprof_version[0]) sysprof_version_conf.set('MINOR_VERSION', sysprof_version[1]) -sysprof_version_conf.set('MICRO_VERSION', sysprof_version[2]) +sysprof_version_conf.set('MICRO_VERSION', 0) sysprof_version_conf.set('VERSION', meson.project_version()) subdir('libsysprof-capture')