Skip to content

Commit b5378bf

Browse files
committed
Bump version number to 4.0.1
1 parent 7edc12b commit b5378bf

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([yara], [4.0.0], [[email protected]])
1+
AC_INIT([yara], [4.0.1], [[email protected]])
22

33
AM_SILENT_RULES([yes])
44
AC_CONFIG_SRCDIR([yara.c])

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# The short X.Y version.
5454
version = '4.0'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '4.0.0'
56+
release = '4.0.1'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

libyara/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ dist_noinst_DATA = pb/yara.proto
144144

145145
lib_LTLIBRARIES = libyara.la
146146

147-
libyara_la_LDFLAGS = -version-number 4:0:0
147+
libyara_la_LDFLAGS = -version-number 4:0:1
148148

149149
BUILT_SOURCES = \
150150
lexer.c \

libyara/atoms.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,8 @@ int yr_atoms_extract_from_re(
14151415
// This is to avoid the situation where we have "base64 wide" because
14161416
// the wide has already been applied BEFORE the base64 encoding.
14171417
if (modifier.flags & STRING_FLAGS_WIDE &&
1418-
!(modifier.flags & STRING_FLAGS_BASE64 || modifier.flags & STRING_FLAGS_BASE64_WIDE))
1418+
!(modifier.flags & STRING_FLAGS_BASE64 ||
1419+
modifier.flags & STRING_FLAGS_BASE64_WIDE))
14191420
{
14201421
FAIL_ON_ERROR_WITH_CLEANUP(
14211422
_yr_atoms_wide(*atoms, &wide_atoms),

libyara/include/yara/libyara.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3434

3535
#define YR_MAJOR_VERSION 4
3636
#define YR_MINOR_VERSION 0
37-
#define YR_MICRO_VERSION 0
37+
#define YR_MICRO_VERSION 1
3838

3939
#define version_str(s) _version_str(s)
4040
#define _version_str(s) #s

0 commit comments

Comments
 (0)