File tree Expand file tree Collapse file tree 8 files changed +13
-13
lines changed
Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1- AC_INIT ( [ yara] , [ 3.3 .0] , [ vmalvarez@virustotal.com] )
1+ AC_INIT ( [ yara] , [ 3.4 .0] , [ vmalvarez@virustotal.com] )
22
33AC_CONFIG_SRCDIR ( [ yara.c] )
44
Original file line number Diff line number Diff line change 4444
4545# General information about the project.
4646project = 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.
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ yarainclude_HEADERS = \
5959
6060lib_LTLIBRARIES = libyara.la
6161
62- libyara_la_LDFLAGS = -version-number 3:3 :0
62+ libyara_la_LDFLAGS = -version-number 3:4 :0
6363
6464libyara_la_SOURCES = \
6565 $(MODULES ) \
Original file line number Diff line number Diff 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) | \
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 2626
2727setup (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 (
Original file line number Diff line number Diff line change 1717from distutils .core import setup , Extension
1818
1919setup (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 (
Original file line number Diff line number Diff line change 1717from distutils .core import setup , Extension
1818
1919setup (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 (
You can’t perform that action at this time.
0 commit comments