From 412a744653dbc8adb346d717177fb8b1f1662f04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Tisov=C4=8D=C3=ADk?= Date: Mon, 31 Jan 2022 16:46:44 +0100 Subject: [PATCH] Release v3.12.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Peter Tisovčík --- CHANGELOG.md | 5 +++++ docs/rtd/conf.py | 2 +- include/yaramod/yaramod.h | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9170e95b..6715c3e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +# v3.12.2 (2022-01-31) + +* Added support for `dynsym_entries` and `dynsym` ELF module attributes ([#196](https://github.com/avast/yaramod/pull/196)) +* Added support for `algorithm_oid` from PE module ([#197](https://github.com/avast/yaramod/pull/197)) + # v3.12.1 (2021-12-02) * Make empty strings section invalid ([#141](https://github.com/avast/yaramod/issues/141), [#192](https://github.com/avast/yaramod/pull/192)) diff --git a/docs/rtd/conf.py b/docs/rtd/conf.py index a8f8834e..0d70cfd2 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.12.1' +release = 'v3.12.2' # -- General configuration --------------------------------------------------- diff --git a/include/yaramod/yaramod.h b/include/yaramod/yaramod.h index bf84376c..ff377e1d 100644 --- a/include/yaramod/yaramod.h +++ b/include/yaramod/yaramod.h @@ -11,7 +11,7 @@ #define YARAMOD_VERSION_MAJOR 3 #define YARAMOD_VERSION_MINOR 12 -#define YARAMOD_VERSION_PATCH 1 +#define YARAMOD_VERSION_PATCH 2 #define YARAMOD_VERSION_ADDEND "" #define YARAMOD_VERSION STR(YARAMOD_VERSION_MAJOR) "." STR(YARAMOD_VERSION_MINOR) "." STR(YARAMOD_VERSION_PATCH) YARAMOD_VERSION_ADDEND