Skip to content

Commit

Permalink
Set version number to 3.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Feb 22, 2019
1 parent 1ecb0e6 commit d7fc754
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AppVeyor CI for Windows

version: 3.8.1-{build}
version: 3.9.0-{build}

pull_requests:
do_not_increment_build_number: true
Expand Down
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], [3.8.1], [vmalvarez@virustotal.com])
AC_INIT([yara], [3.9.0], [vmalvarez@virustotal.com])

AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([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-2018, VirusTotal'
copyright = u'2014-2019, 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 = '3.8'
version = '3.9'
# The full version, including alpha/beta/rc tags.
release = '3.8.1'
release = '3.9.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-3.8.1.tar.gz
cd yara-3.8.1
tar -zxf yara-3.9.0.tar.gz
cd yara-3.9.0
./bootstrap.sh

Make sure you have ``automake``, ``libtool``, ``make`` and ``gcc`` installed
Expand Down
2 changes: 1 addition & 1 deletion libyara/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ noinst_HEADERS = \

lib_LTLIBRARIES = libyara.la

libyara_la_LDFLAGS = -version-number 3:8:1
libyara_la_LDFLAGS = -version-number 3:9: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 3
#define YR_MINOR_VERSION 8
#define YR_MICRO_VERSION 1
#define YR_MINOR_VERSION 9
#define YR_MICRO_VERSION 0

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

0 comments on commit d7fc754

Please sign in to comment.