Skip to content

Commit

Permalink
Release v3.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TadeasKucera committed Dec 2, 2021
1 parent c1b76d9 commit 0f1abf9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion docs/rtd/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Avast'

# The full version, including alpha/beta/rc tags
release = 'v3.12.0'
release = 'v3.12.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion include/yaramod/yaramod.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0f1abf9

Please sign in to comment.