version 1.39

This commit is contained in:
Daniel Marjamäki 2009-12-06 13:34:51 +01:00
parent a30a64d280
commit d94bc4c89f
5 changed files with 9 additions and 9 deletions

View File

@ -56,8 +56,8 @@ END
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,28,0,0 FILEVERSION 1,39,0,0
PRODUCTVERSION 1,28,0,0 PRODUCTVERSION 1,39,0,0
FILEFLAGSMASK 0x17L FILEFLAGSMASK 0x17L
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -73,12 +73,12 @@ BEGIN
BLOCK "040904b0" BLOCK "040904b0"
BEGIN BEGIN
VALUE "FileDescription", "cppcheck Application" VALUE "FileDescription", "cppcheck Application"
VALUE "FileVersion", "1.28" VALUE "FileVersion", "1.39"
VALUE "InternalName", "cppcheck" VALUE "InternalName", "cppcheck"
VALUE "LegalCopyright", "Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team." VALUE "LegalCopyright", "Copyright (C) 2007-2009 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.28" VALUE "ProductVersion", "1.39"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -20,7 +20,7 @@
/** /**
* *
* @mainpage Cppcheck * @mainpage Cppcheck
* @version 1.38 * @version 1.39
* *
* @section overview_sec Overview * @section overview_sec Overview
* Cppcheck is a simple tool for static analysis of C/C++ code. * Cppcheck is a simple tool for static analysis of C/C++ code.

View File

@ -11,7 +11,7 @@
# - win_installer/gui.wxs # - win_installer/gui.wxs
# Tag to use # Tag to use
tag=1.38 tag=1.39
# Name of release # Name of release
releasename=cppcheck-$tag releasename=cppcheck-$tag

View File

@ -77,7 +77,7 @@ void CppCheck::clearFiles()
const char * CppCheck::version() const char * CppCheck::version()
{ {
return "1.38"; return "1.39";
} }
void CppCheck::parseFromArgs(int argc, const char* const argv[]) void CppCheck::parseFromArgs(int argc, const char* const argv[])

View File

@ -1,6 +1,6 @@
<?xml version='1.0' encoding='windows-1252'?> <?xml version='1.0' encoding='windows-1252'?>
<?define ProductName = "Cppcheck 1.38" ?> <?define ProductName = "Cppcheck 1.39" ?>
<?define ProductVersion = "1.38" ?> <?define ProductVersion = "1.39" ?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'> <Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='$(var.ProductName)' Id='88DE59C3-7640-47A2-A047-7289807AE3BA' UpgradeCode='DDB850E4-F8DE-4290-BDF1-AC12475DEE80' <Product Name='$(var.ProductName)' Id='88DE59C3-7640-47A2-A047-7289807AE3BA' UpgradeCode='DDB850E4-F8DE-4290-BDF1-AC12475DEE80'
Language='1033' Codepage='1252' Version='$(var.ProductVersion)' Manufacturer='The Cppcheck team'> Language='1033' Codepage='1252' Version='$(var.ProductVersion)' Manufacturer='The Cppcheck team'>