Skip to content

Commit

Permalink
Set version number to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Jun 18, 2015
1 parent 406fda8 commit 040db95
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 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], [3.3.0], [vmalvarez@virustotal.com])
AC_INIT([yara], [3.4.0], [vmalvarez@virustotal.com])

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, Victor M. Alvarez'
copyright = u'2014-2015, Victor M. Alvarez'

# 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.3'
version = '3.4'
# The full version, including alpha/beta/rc tags.
release = '3.3.0'
release = '3.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion libyara/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ yarainclude_HEADERS = \

lib_LTLIBRARIES = libyara.la

libyara_la_LDFLAGS = -version-number 3:3:0
libyara_la_LDFLAGS = -version-number 3:4:0

libyara_la_SOURCES = \
$(MODULES) \
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 @@ -20,11 +20,11 @@ limitations under the License.
#include <yara/utils.h>

#define YR_MAJOR_VERSION 3
#define YR_MINOR_VERSION 3
#define YR_MINOR_VERSION 4
#define YR_MICRO_VERSION 0

// Version as a string
#define YR_VERSION "3.3.0"
#define YR_VERSION "3.4.0"

// Version as a single 4-byte hex number, e.g. 0x030401 == 3.4.1.
#define YR_VERSION_HEX ((YR_MAJOR_VERSION << 16) | \
Expand Down
6 changes: 3 additions & 3 deletions windows/include/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#define PACKAGE_NAME "yara"

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

/* Define to the version of this package. */
#define PACKAGE_VERSION "3.3.0"
#define PACKAGE_VERSION "3.4.0"

/* Version number of package */
#define VERSION "3.3.0"
#define VERSION "3.4.0"
2 changes: 1 addition & 1 deletion yara-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setup(script_args=args,
name='yara-python',
version='3.3.0',
version='3.4.0',
author='Victor M. Alvarez',
author_email='plusvic@gmail.com;vmalvarez@virustotal.com',
ext_modules=[Extension(
Expand Down
2 changes: 1 addition & 1 deletion yara-python/setupwin32.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from distutils.core import setup, Extension

setup(name='yara-python',
version='3.3.0',
version='3.4.0',
author='Victor M. Alvarez',
author_email='plusvic@gmail.com;vmalvarez@virustotal.com',
ext_modules=[Extension(
Expand Down
2 changes: 1 addition & 1 deletion yara-python/setupwin64.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from distutils.core import setup, Extension

setup(name='yara-python',
version='3.3.0',
version='3.4.0',
author='Victor M. Alvarez',
author_email='plusvic@gmail.com;vmalvarez@virustotal.com',
ext_modules=[Extension(
Expand Down

1 comment on commit 040db95

@axqd
Copy link
Contributor

@axqd axqd commented on 040db95 Oct 26, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

version number of spec file in dist folder is not updated.

Please sign in to comment.