From 4064e7cf547d64535b7e9d397ce64bf0aa0a5ee3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Milkovi=C4=8D?= Date: Mon, 30 Sep 2024 17:39:20 +0200 Subject: [PATCH] Release v4.0.0 --- CHANGELOG.md | 4 ++++ include/yaramod/yaramod.h | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8396936..ecdab98a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +# v4.0.0 (2024-09-30) + +* Started doing YARA-X compatibility with adding `with` expression and expression arrays `(..., ...)` ([#264](https://github.com/avast/yaramod/pull/264), [#265](https://github.com/avast/yaramod/pull/265)) + # v3.23.0 (2024-06-18) * Added support for `vt` module diff --git a/include/yaramod/yaramod.h b/include/yaramod/yaramod.h index 71928547..d60f0430 100644 --- a/include/yaramod/yaramod.h +++ b/include/yaramod/yaramod.h @@ -9,14 +9,14 @@ #define STR_HELPER(x) #x #define STR(x) STR_HELPER(x) -#define YARAMOD_VERSION_MAJOR 3 -#define YARAMOD_VERSION_MINOR 23 +#define YARAMOD_VERSION_MAJOR 4 +#define YARAMOD_VERSION_MINOR 0 #define YARAMOD_VERSION_PATCH 0 #define YARAMOD_VERSION_ADDEND "" #define YARAMOD_VERSION STR(YARAMOD_VERSION_MAJOR) "." STR(YARAMOD_VERSION_MINOR) "." STR(YARAMOD_VERSION_PATCH) YARAMOD_VERSION_ADDEND -#define YARA_SYNTAX_VERSION "4.3" +#define YARA_SYNTAX_VERSION "x-0.9.0" #include