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()}"