Skip to content

Commit dc32f42

Browse files
committed
Set Cppcheck version
1 parent 9c3eeb5 commit dc32f42

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

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.90
23+
* @version 2.0
2424
*
2525
* @section overview_sec Overview
2626
* Cppcheck is a simple tool for static analysis of C/C++ code.

cmake/versions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Version for libraries CPP
2-
SET(VERSION "1.90")
2+
SET(VERSION "2.0")
33
STRING(REGEX MATCHALL "[0-9]" VERSION_PARTS "${VERSION}")
44
LIST(GET VERSION_PARTS 0 VERSION_MAJOR)
55
LIST(GET VERSION_PARTS 1 VERSION_MINOR)

lib/version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#define CPPCHECK_MAJOR 1
2-
#define CPPCHECK_MINOR 90
3-
#define CPPCHECK_DEVMINOR 90
1+
#define CPPCHECK_MAJOR 2
2+
#define CPPCHECK_MINOR 0
3+
#define CPPCHECK_DEVMINOR 0
44

55
#define STRINGIFY(x) STRING(x)
66
#define STRING(VER) #VER
@@ -11,4 +11,4 @@
1111
#define CPPCHECK_VERSION_STRING STRINGIFY(CPPCHECK_MAJOR) "." STRINGIFY(CPPCHECK_DEVMINOR) " dev"
1212
#define CPPCHECK_VERSION CPPCHECK_MAJOR,CPPCHECK_MINOR,99,0
1313
#endif
14-
#define LEGALCOPYRIGHT L"Copyright (C) 2007-2019 Cppcheck team."
14+
#define LEGALCOPYRIGHT L"Copyright (C) 2007-2020 Cppcheck team."

man/manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Cppcheck manual
3-
subtitle: Version 1.90 dev
3+
subtitle: Version 2.0
44
author: Cppcheck team
55
lang: en
66
documentclass: report

man/reference-cfg-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Cppcheck .cfg format
3-
subtitle: Version 1.90 dev
3+
subtitle: Version 2.0
44
author: Cppcheck team
55
lang: en
66
documentclass: report

win_installer/productInfo.wxi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Include>
3-
<?define ProductName = "Cppcheck $(var.Platform) 1.90" ?>
3+
<?define ProductName = "Cppcheck $(var.Platform) 2.0" ?>
44
<?define ProductNameShort = "Cppcheck" ?>
5-
<?define ProductVersion = "1.90" ?>
5+
<?define ProductVersion = "2.0" ?>
66

77
<?define ProductManufacturer = "The Cppcheck team" ?>
88
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>
@@ -20,4 +20,4 @@
2020
<?define optionalPtfsGUID = "F9EB9DB1-C0F1-4548-A5B0-27B51CD43A34" ?>
2121
<?define basedocsGUID = "9F62B23C-CD2B-4826-A567-6AB6F75A2AEA" ?>
2222
<?define registrykeysGUID = "8CB515B1-6EF6-4A2A-97A0-F8A13E3A505E" ?>
23-
</Include>
23+
</Include>

0 commit comments

Comments
 (0)