Skip to content

Commit

Permalink
Release 3.10.8
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterMatula committed Jul 28, 2021
1 parent 86a84f9 commit c6837f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

# v3.10.8 (2021-07-28)

* Add Python binding for `yaramod::IntFunctionEndianness` ([#132](https://github.com/avast/yaramod/issues/132), [#181](https://github.com/avast/yaramod/pull/181)).
* Add unary operator `defined` ([#178](https://github.com/avast/yaramod/pull/178)).
* Fix generation of double values - always use decimal notation ([#179](https://github.com/avast/yaramod/pull/179)).
* Fix typos in documentation ([#180](https://github.com/avast/yaramod/pull/180)).

# v3.10.7 (2021-06-16)

* Avoid global symbols to be renamed when renaming local variable ([#174](https://github.com/avast/yaramod/pull/174))
Expand All @@ -22,7 +29,7 @@

# v3.10.3 (2021-05-14)

* Feature for older compilers: Include filesystem library based on its availability.
* Feature for older compilers: Include filesystem library based on its availability.

# v3.10.2 (2021-04-28)

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.10.7'
release = 'v3.10.8'


# -- 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 10
#define YARAMOD_VERSION_PATCH 7
#define YARAMOD_VERSION_PATCH 8
#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 c6837f4

Please sign in to comment.