Set version to "1.55 dev"
This commit is contained in:
parent
81b0ad00bc
commit
f1692cdefe
|
@ -56,13 +56,13 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,54,0,0
|
FILEVERSION 0,0,0,0
|
||||||
PRODUCTVERSION 1,54,0,0
|
PRODUCTVERSION 0,0,0,0
|
||||||
FILEFLAGSMASK 0x17L
|
FILEFLAGSMASK 0x17L
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS (0x1L|VS_FF_PRERELEASE)
|
||||||
#else
|
#else
|
||||||
FILEFLAGS 0x0L
|
FILEFLAGS (0x0L|VS_FF_PRERELEASE)
|
||||||
#endif
|
#endif
|
||||||
FILEOS 0x4L
|
FILEOS 0x4L
|
||||||
FILETYPE 0x1L
|
FILETYPE 0x1L
|
||||||
|
@ -73,12 +73,12 @@ BEGIN
|
||||||
BLOCK "040904b0"
|
BLOCK "040904b0"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "FileDescription", "cppcheck Application"
|
VALUE "FileDescription", "cppcheck Application"
|
||||||
VALUE "FileVersion", "1.54"
|
VALUE "FileVersion", "1.55 dev"
|
||||||
VALUE "InternalName", "cppcheck"
|
VALUE "InternalName", "cppcheck"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2007-2012 Daniel Marjamäki and Cppcheck team."
|
VALUE "LegalCopyright", "Copyright (C) 2007-2012 Daniel Marjamäki and Cppcheck team."
|
||||||
VALUE "OriginalFilename", "cppcheck.exe"
|
VALUE "OriginalFilename", "cppcheck.exe"
|
||||||
VALUE "ProductName", "cppcheck Application"
|
VALUE "ProductName", "cppcheck Application"
|
||||||
VALUE "ProductVersion", "1.54"
|
VALUE "ProductVersion", "1.55 dev"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
#include <pcre.h>
|
#include <pcre.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const char Version[] = "1.54";
|
static const char Version[] = "1.55 dev";
|
||||||
static const char ExtraVersion[] = "";
|
static const char ExtraVersion[] = "";
|
||||||
|
|
||||||
static TimerResults S_timerResults;
|
static TimerResults S_timerResults;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
|
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
|
||||||
<book>
|
<book>
|
||||||
<bookinfo>
|
<bookinfo>
|
||||||
<title>Cppcheck 1.54</title>
|
<title>Cppcheck 1.55 dev</title>
|
||||||
|
|
||||||
<date>2012-04-08</date>
|
<date>2012-04-08</date>
|
||||||
</bookinfo>
|
</bookinfo>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Include>
|
<Include>
|
||||||
<?define ProductName = "Cppcheck 1.54" ?>
|
<?define ProductName = "Cppcheck 1.55 dev" ?>
|
||||||
<?define ProductNameShort = "Cppcheck" ?>
|
<?define ProductNameShort = "Cppcheck" ?>
|
||||||
<?define ProductVersion = "1.54.0" ?>
|
<?define ProductVersion = "1.55.dev" ?>
|
||||||
|
|
||||||
<?define ProductManufacturer = "The Cppcheck team" ?>
|
<?define ProductManufacturer = "The Cppcheck team" ?>
|
||||||
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>
|
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>
|
||||||
|
|
Loading…
Reference in New Issue