From 29338cad00a878174b0b6bf7d877ff8ed722f8c8 Mon Sep 17 00:00:00 2001 From: MatejKastak Date: Mon, 27 Mar 2023 11:46:11 +0200 Subject: [PATCH] Release v3.19.1 --- CHANGELOG.md | 4 ++++ docs/rtd/conf.py | 2 +- include/yaramod/yaramod.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9c3e029..2a4c031a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +# v3.19.1 (2023-03-27) + +* Open json modules in read only mode ([#242](https://github.com/avast/yaramod/pull/242)) + # v3.19.0 (2023-03-03) * Added missing string operators (icontains, endswith, iendswith, startswith, istartswith) ([#239](https://github.com/avast/yaramod/pull/239)) diff --git a/docs/rtd/conf.py b/docs/rtd/conf.py index 2d1d93e6..0c518c05 100644 --- a/docs/rtd/conf.py +++ b/docs/rtd/conf.py @@ -22,7 +22,7 @@ author = 'Avast' # The full version, including alpha/beta/rc tags -release = 'v3.16.1' +release = 'v3.19.1' # -- General configuration --------------------------------------------------- diff --git a/include/yaramod/yaramod.h b/include/yaramod/yaramod.h index cee8d17a..5e7a7347 100644 --- a/include/yaramod/yaramod.h +++ b/include/yaramod/yaramod.h @@ -11,7 +11,7 @@ #define YARAMOD_VERSION_MAJOR 3 #define YARAMOD_VERSION_MINOR 19 -#define YARAMOD_VERSION_PATCH 0 +#define YARAMOD_VERSION_PATCH 1 #define YARAMOD_VERSION_ADDEND "" #define YARAMOD_VERSION STR(YARAMOD_VERSION_MAJOR) "." STR(YARAMOD_VERSION_MINOR) "." STR(YARAMOD_VERSION_PATCH) YARAMOD_VERSION_ADDEND