Skip to content

Commit

Permalink
Release v3.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKastak committed Jun 13, 2023
1 parent 45b82b2 commit 1111272
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

# v3.20.0 (2023-06-13)

* Add support for string module ([#244](https://github.com/avast/yaramod/pull/244))
* Fixed parsing of empty alternation groups ([#247](https://github.com/avast/yaramod/pull/247))
* include <cstdint> every time std::<int_type> is used ([#246](https://github.com/avast/yaramod/pull/246))
* Use the right python to create `WRAP_MODULE_SOURCES` ([#225](https://github.com/avast/yaramod/pull/225))
* Improve release docs ([#243](https://github.com/avast/yaramod/pull/243))

# v3.19.1 (2023-03-27)

* Open json modules in read only mode ([#242](https://github.com/avast/yaramod/pull/242))
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.19.1'
release = 'v3.20.0'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions include/yaramod/yaramod.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#define STR(x) STR_HELPER(x)

#define YARAMOD_VERSION_MAJOR 3
#define YARAMOD_VERSION_MINOR 19
#define YARAMOD_VERSION_PATCH 1
#define YARAMOD_VERSION_MINOR 20
#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
Expand Down

0 comments on commit 1111272

Please sign in to comment.