Skip to content

Commit

Permalink
Release v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
metthal committed Sep 30, 2024
1 parent 6e9a855 commit 4064e7c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions include/yaramod/yaramod.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 <memory>

Expand Down

0 comments on commit 4064e7c

Please sign in to comment.