Skip to content

Commit b9f925b

Browse files
committed
Bump version to 3.11
1 parent 385733c commit b9f925b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ACLOCAL_AMFLAGS=-I m4
2323
bin_PROGRAMS = yara yarac
2424

2525
yara_SOURCES = args.c args.h common.h threading.c threading.h yara.c
26-
yara_LDADD = -Llibyara/.libs -lyara
26+
yara_LDADD = libyara/.libs/libyara.a #-Llibyara/.libs -lyara
2727

2828
yarac_SOURCES = args.c args.h common.h yarac.c
2929
yarac_LDADD = -Llibyara/.libs -lyara

configure.ac

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

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

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '3.10'
54+
version = '3.11'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '3.10.0'
56+
release = '3.11.0'
5757

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

docs/gettingstarted.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ The YARA port in vcpkg is kept up to date by Microsoft team members and communit
2222

2323
Download the source tarball and get prepared for compiling it::
2424

25-
tar -zxf yara-3.10.0.tar.gz
26-
cd yara-3.10.0
25+
tar -zxf yara-3.11.0.tar.gz
26+
cd yara-3.11.0
2727
./bootstrap.sh
2828

2929
Make sure you have ``automake``, ``libtool``, ``make`` and ``gcc`` installed

libyara/include/yara/libyara.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3333
#include <yara/utils.h>
3434

3535
#define YR_MAJOR_VERSION 3
36-
#define YR_MINOR_VERSION 10
36+
#define YR_MINOR_VERSION 11
3737
#define YR_MICRO_VERSION 0
3838

3939
#define version_str(s) _version_str(s)

0 commit comments

Comments
 (0)