Skip to content

Commit

Permalink
Bump version number to 4.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Mar 11, 2021
1 parent a095c08 commit f8a4f14
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([yara], [4.0.2], [[email protected]])
AC_INIT([yara], [4.1.0], [[email protected]])

AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([cli/yara.c])
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@

# General information about the project.
project = u'yara'
copyright = u'2014-2020, VirusTotal'
copyright = u'2014-2021, VirusTotal'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.0'
version = '4.1'
# The full version, including alpha/beta/rc tags.
release = '4.0.2'
release = '4.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Compiling and installing YARA

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

tar -zxf yara-4.0.0.tar.gz
cd yara-4.0.0
tar -zxf yara-4.1.0.tar.gz
cd yara-4.1.0
./bootstrap.sh

Make sure you have ``automake``, ``libtool``, ``make`` and ``gcc`` and ``pkg-config`` installed in your system. Ubuntu and Debian users can use::
Expand Down
2 changes: 1 addition & 1 deletion libyara/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ dist_noinst_DATA = pb/yara.proto

lib_LTLIBRARIES = libyara.la

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

BUILT_SOURCES = \
lexer.c \
Expand Down
4 changes: 2 additions & 2 deletions libyara/include/yara/libyara.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <yara/utils.h>

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

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

0 comments on commit f8a4f14

Please sign in to comment.