Skip to content

Commit

Permalink
Bump version number to 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed May 15, 2020
1 parent 7edc12b commit b5378bf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,4 +1,4 @@
AC_INIT([yara], [4.0.0], [vmalvarez@virustotal.com])
AC_INIT([yara], [4.0.1], [vmalvarez@virustotal.com])

AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([yara.c])
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -53,7 +53,7 @@
# The short X.Y version.
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.0.0'
release = '4.0.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion libyara/Makefile.am
Expand Up @@ -144,7 +144,7 @@ dist_noinst_DATA = pb/yara.proto

lib_LTLIBRARIES = libyara.la

libyara_la_LDFLAGS = -version-number 4:0:0
libyara_la_LDFLAGS = -version-number 4:0:1

BUILT_SOURCES = \
lexer.c \
Expand Down
3 changes: 2 additions & 1 deletion libyara/atoms.c
Expand Up @@ -1415,7 +1415,8 @@ int yr_atoms_extract_from_re(
// This is to avoid the situation where we have "base64 wide" because
// the wide has already been applied BEFORE the base64 encoding.
if (modifier.flags & STRING_FLAGS_WIDE &&
!(modifier.flags & STRING_FLAGS_BASE64 || modifier.flags & STRING_FLAGS_BASE64_WIDE))
!(modifier.flags & STRING_FLAGS_BASE64 ||
modifier.flags & STRING_FLAGS_BASE64_WIDE))
{
FAIL_ON_ERROR_WITH_CLEANUP(
_yr_atoms_wide(*atoms, &wide_atoms),
Expand Down
2 changes: 1 addition & 1 deletion libyara/include/yara/libyara.h
Expand Up @@ -34,7 +34,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#define YR_MAJOR_VERSION 4
#define YR_MINOR_VERSION 0
#define YR_MICRO_VERSION 0
#define YR_MICRO_VERSION 1

#define version_str(s) _version_str(s)
#define _version_str(s) #s
Expand Down

0 comments on commit b5378bf

Please sign in to comment.