Skip to content

Commit d94bc4c

Browse files
author
Daniel Marjamäki
committed
version 1.39
1 parent a30a64d commit d94bc4c

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

cli/cppcheck.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ END
5656
//
5757

5858
VS_VERSION_INFO VERSIONINFO
59-
FILEVERSION 1,28,0,0
60-
PRODUCTVERSION 1,28,0,0
59+
FILEVERSION 1,39,0,0
60+
PRODUCTVERSION 1,39,0,0
6161
FILEFLAGSMASK 0x17L
6262
#ifdef _DEBUG
6363
FILEFLAGS 0x1L
@@ -73,12 +73,12 @@ BEGIN
7373
BLOCK "040904b0"
7474
BEGIN
7575
VALUE "FileDescription", "cppcheck Application"
76-
VALUE "FileVersion", "1.28"
76+
VALUE "FileVersion", "1.39"
7777
VALUE "InternalName", "cppcheck"
7878
VALUE "LegalCopyright", "Copyright (C) 2007-2009 Daniel Marjam�ki and Cppcheck team."
7979
VALUE "OriginalFilename", "cppcheck.exe"
8080
VALUE "ProductName", "cppcheck Application"
81-
VALUE "ProductVersion", "1.28"
81+
VALUE "ProductVersion", "1.39"
8282
END
8383
END
8484
BLOCK "VarFileInfo"

cli/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
*
2222
* @mainpage Cppcheck
23-
* @version 1.38
23+
* @version 1.39
2424
*
2525
* @section overview_sec Overview
2626
* Cppcheck is a simple tool for static analysis of C/C++ code.

createrelease

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# - win_installer/gui.wxs
1212

1313
# Tag to use
14-
tag=1.38
14+
tag=1.39
1515

1616
# Name of release
1717
releasename=cppcheck-$tag

lib/cppcheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void CppCheck::clearFiles()
7777

7878
const char * CppCheck::version()
7979
{
80-
return "1.38";
80+
return "1.39";
8181
}
8282

8383
void CppCheck::parseFromArgs(int argc, const char* const argv[])

win_installer/cli.wxs

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

0 commit comments

Comments
 (0)