From 0f1abf9b23848b194814d4af4051c84d85799e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tade=C3=A1=C5=A1=20Ku=C4=8Dera?= Date: Thu, 2 Dec 2021 15:23:16 +0100 Subject: [PATCH] Release v3.12.1 --- 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 6a6bee29..9170e95b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +# 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)) +* Fix escaped character handling in regex ([#186](https://github.com/avast/yaramod/issues/186), [#191](https://github.com/avast/yaramod/pull/191)) + # v3.12.0 (2021-11-26) * Dropped support for Python 3.7 and added support for Python 3.10 ([#190](https://github.com/avast/yaramod/pull/190)) diff --git a/docs/rtd/conf.py b/docs/rtd/conf.py index 8c028d1f..a8f8834e 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.0' +release = 'v3.12.1' # -- General configuration --------------------------------------------------- diff --git a/include/yaramod/yaramod.h b/include/yaramod/yaramod.h index 077d90b7..bf84376c 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 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