Skip to content

Commit 040db95

Browse files
committed
Set version number to 3.4.0
1 parent 406fda8 commit 040db95

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([yara], [3.3.0], [vmalvarez@virustotal.com])
1+
AC_INIT([yara], [3.4.0], [vmalvarez@virustotal.com])
22

33
AC_CONFIG_SRCDIR([yara.c])
44

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@
4444

4545
# General information about the project.
4646
project = u'yara'
47-
copyright = u'2014, Victor M. Alvarez'
47+
copyright = u'2014-2015, Victor M. Alvarez'
4848

4949
# The version info for the project you're documenting, acts as replacement for
5050
# |version| and |release|, also used in various other places throughout the
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '3.3'
54+
version = '3.4'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '3.3.0'
56+
release = '3.4.0'
5757

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

libyara/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ yarainclude_HEADERS = \
5959

6060
lib_LTLIBRARIES = libyara.la
6161

62-
libyara_la_LDFLAGS = -version-number 3:3:0
62+
libyara_la_LDFLAGS = -version-number 3:4:0
6363

6464
libyara_la_SOURCES = \
6565
$(MODULES) \

libyara/include/yara/libyara.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ limitations under the License.
2020
#include <yara/utils.h>
2121

2222
#define YR_MAJOR_VERSION 3
23-
#define YR_MINOR_VERSION 3
23+
#define YR_MINOR_VERSION 4
2424
#define YR_MICRO_VERSION 0
2525

2626
// Version as a string
27-
#define YR_VERSION "3.3.0"
27+
#define YR_VERSION "3.4.0"
2828

2929
// Version as a single 4-byte hex number, e.g. 0x030401 == 3.4.1.
3030
#define YR_VERSION_HEX ((YR_MAJOR_VERSION << 16) | \

windows/include/config.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
#define PACKAGE_NAME "yara"
1010

1111
/* Define to the full name and version of this package. */
12-
#define PACKAGE_STRING "yara 3.3.0"
12+
#define PACKAGE_STRING "yara 3.4.0"
1313

1414
/* Define to the version of this package. */
15-
#define PACKAGE_VERSION "3.3.0"
15+
#define PACKAGE_VERSION "3.4.0"
1616

1717
/* Version number of package */
18-
#define VERSION "3.3.0"
18+
#define VERSION "3.4.0"

yara-python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
setup(script_args=args,
2828
name='yara-python',
29-
version='3.3.0',
29+
version='3.4.0',
3030
author='Victor M. Alvarez',
3131
author_email='plusvic@gmail.com;vmalvarez@virustotal.com',
3232
ext_modules=[Extension(

yara-python/setupwin32.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from distutils.core import setup, Extension
1818

1919
setup(name='yara-python',
20-
version='3.3.0',
20+
version='3.4.0',
2121
author='Victor M. Alvarez',
2222
author_email='plusvic@gmail.com;vmalvarez@virustotal.com',
2323
ext_modules=[Extension(

yara-python/setupwin64.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from distutils.core import setup, Extension
1818

1919
setup(name='yara-python',
20-
version='3.3.0',
20+
version='3.4.0',
2121
author='Victor M. Alvarez',
2222
author_email='plusvic@gmail.com;vmalvarez@virustotal.com',
2323
ext_modules=[Extension(

0 commit comments

Comments
 (0)