From ffca60917c2bbd4e30564614363d2ea99bb64d96 Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Tue, 19 Aug 2025 22:14:51 -0400 Subject: [PATCH] meson.build: bump to 0.4.0 No breaking changes New features: - man page for hexagonrpcd - support for FASTRPC_IOCTL_INIT_CREATE with fastrpc_shell_X - apps_mem interface (mostly allocating memory for now) - logic for hexagonfs root directory - sscregistrygen tool to generate sensor registry - Github CI (successful compilation only) Fixes: - Disabled verbose logging by default - Documented the paths relative to the root directory - Made apps_std_stat relative to ADSP libs directory - Fixed unsigned/signed comparison in reverse tunnel - Declared minimum meson version for meson.options - Added soversion to the library build Signed-off-by: Richard Acayan --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 964bbb5..2bdc182 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('fastrpc', 'c', version: '0.3.2', meson_version: '>=1.1') +project('fastrpc', 'c', version: '0.4.0', meson_version: '>=1.1') version_array = meson.project_version().split('.') api_version = version_array[0] + '.' + version_array[1]