Skip to content

Commit

Permalink
Release version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Aug 26, 2014
1 parent 03b015e commit 3462b7f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
14 changes: 10 additions & 4 deletions config.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* config.h. Generated from config.h.in by configure. */
/* config.h.in. Generated from configure.ac by autoheader. */

/* enable cuckoo */
/* enable cuckoo module */
#define CUCKOO 1

/* enable dmalloc */
Expand All @@ -19,6 +19,9 @@
/* Define to 1 if you have the `jansson' library (-ljansson). */
#define HAVE_LIBJANSSON 1

/* Define to 1 if you have the `magic' library (-lmagic). */
/* #undef HAVE_LIBMAGIC */

/* Define to 1 if you have the `pthread' library (-lpthread). */
#define HAVE_LIBPTHREAD 1

Expand Down Expand Up @@ -50,6 +53,9 @@
*/
#define LT_OBJDIR ".libs/"

/* enable magic module */
/* #undef MAGIC */

/* Name of package */
#define PACKAGE "yara"

Expand All @@ -60,19 +66,19 @@
#define PACKAGE_NAME "yara"

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

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "yara"

/* Define to the version of this package. */
#define PACKAGE_VERSION "3.0"
#define PACKAGE_VERSION "3.1"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "3.0"
#define VERSION "3.1"

/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
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.0], [[email protected]])
AC_INIT([yara], [3.1], [[email protected]])

AC_CONFIG_SRCDIR([yara.c])

Expand Down
2 changes: 1 addition & 1 deletion libyara/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ yarainclude_HEADERS = \

lib_LTLIBRARIES = libyara.la

libyara_la_LDFLAGS = -export-symbols libyara.sym -version-number 3:0
libyara_la_LDFLAGS = -export-symbols libyara.sym -version-number 3:1

libyara_la_SOURCES = \
$(MODULES) \
Expand Down
2 changes: 1 addition & 1 deletion yara-python/setup.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.0',
version='3.1',
author='Victor M. Alvarez',
author_email='[email protected];[email protected]',
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.0',
version='3.1',
author='Victor M. Alvarez',
author_email='[email protected];[email protected]',
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.0',
version='3.1',
author='Victor M. Alvarez',
author_email='[email protected];[email protected]',
ext_modules=[Extension(
Expand Down

0 comments on commit 3462b7f

Please sign in to comment.