From 774517edaf6d294cb7bc2d6304ba5f804cd232aa Mon Sep 17 00:00:00 2001 From: hanez Date: Wed, 3 Jun 2026 22:08:25 +0200 Subject: [PATCH] Small test script fix. (0.42.1) --- CMakeLists.txt | 2 +- scripts/check_op_includes.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d47084..0419051 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(fun VERSION 0.42.0 LANGUAGES C) +project(fun VERSION 0.42.1 LANGUAGES C) set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) diff --git a/scripts/check_op_includes.py b/scripts/check_op_includes.py index fbc58e9..be9b6e6 100755 --- a/scripts/check_op_includes.py +++ b/scripts/check_op_includes.py @@ -134,6 +134,9 @@ def parse_includes_from_vm(text: str) -> set[str]: if d == "sqlite": if n in {"open", "close", "exec", "query"}: return f"SQLITE_{n.upper()}" + if d == "redis": + if n in {"connect", "cmd", "close"}: + return f"REDIS_{n.upper()}" if d == "pcsc": if n in {"establish", "release", "list_readers", "connect", "disconnect", "transmit"}: return f"PCSC_{n.upper()}"