Updated version to 1.40
This commit is contained in:
parent
3aa67cd537
commit
5595a17e41
|
@ -56,8 +56,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,39,0,0
|
||||
PRODUCTVERSION 1,39,0,0
|
||||
FILEVERSION 1,40,0,0
|
||||
PRODUCTVERSION 1,40,0,0
|
||||
FILEFLAGSMASK 0x17L
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -73,12 +73,12 @@ BEGIN
|
|||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "FileDescription", "cppcheck Application"
|
||||
VALUE "FileVersion", "1.39"
|
||||
VALUE "FileVersion", "1.40"
|
||||
VALUE "InternalName", "cppcheck"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team."
|
||||
VALUE "LegalCopyright", "Copyright (C) 2007-2010 Daniel Marjamäki and Cppcheck team."
|
||||
VALUE "OriginalFilename", "cppcheck.exe"
|
||||
VALUE "ProductName", "cppcheck Application"
|
||||
VALUE "ProductVersion", "1.39"
|
||||
VALUE "ProductVersion", "1.40"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
/**
|
||||
*
|
||||
* @mainpage Cppcheck
|
||||
* @version 1.39
|
||||
* @version 1.40
|
||||
*
|
||||
* @section overview_sec Overview
|
||||
* Cppcheck is a simple tool for static analysis of C/C++ code.
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
# - win_installer/gui.wxs
|
||||
|
||||
# Tag to use
|
||||
tag=1.39
|
||||
tag=1.40
|
||||
|
||||
# Name of release
|
||||
releasename=cppcheck-$tag
|
||||
|
|
|
@ -78,7 +78,7 @@ void CppCheck::clearFiles()
|
|||
|
||||
const char * CppCheck::version()
|
||||
{
|
||||
return "1.39";
|
||||
return "1.40";
|
||||
}
|
||||
|
||||
void CppCheck::parseFromArgs(int argc, const char* const argv[])
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Include>
|
||||
<?define ProductName = "Cppcheck 1.39" ?>
|
||||
<?define ProductName = "Cppcheck 1.40" ?>
|
||||
<?define ProductNameShort = "Cppcheck" ?>
|
||||
<?define ProductVersion = "1.39.0" ?>
|
||||
<?define ProductVersion = "1.40.0" ?>
|
||||
<?define ProductGUID = "{7214EC4C-8F10-4E56-8E99-0B9908E68774}" ?>
|
||||
<?define ProductUpgradeCode = "{7E94124C-1CD1-433F-9423-4614E52300DD}" ?>
|
||||
<?define cppcheckGUID = "1c31dd76-07fa-4420-b9b5-5463742d6a48" ?>
|
||||
|
|
Loading…
Reference in New Issue