File tree 9 files changed +12
-17
lines changed
9 files changed +12
-17
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)
2
2
if (MSVC )
3
3
cmake_minimum_required (VERSION 3.13)
4
4
endif ()
5
- project (Cppcheck VERSION 2.15 .99 LANGUAGES CXX)
5
+ project (Cppcheck VERSION 2.16 .99 LANGUAGES CXX)
6
6
7
7
include (cmake/cxx11.cmake)
8
8
use_cxx11()
Original file line number Diff line number Diff line change 20
20
/* *
21
21
*
22
22
* @mainpage Cppcheck
23
- * @version 2.15 .99
23
+ * @version 2.16 .99
24
24
*
25
25
* @section overview_sec Overview
26
26
* Cppcheck is a simple tool for static analysis of C/C++ code.
Original file line number Diff line number Diff line change 23
23
#define versionH
24
24
25
25
#define CPPCHECK_MAJOR_VERSION 2
26
- #define CPPCHECK_MINOR_VERSION 15
27
- #define CPPCHECK_DEVMINOR_VERSION 16
26
+ #define CPPCHECK_MINOR_VERSION 16
27
+ #define CPPCHECK_DEVMINOR_VERSION 17
28
28
#define CPPCHECK_BUGFIX_VERSION 99
29
29
30
30
#define STRINGIFY (x ) STRING(x)
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Cppcheck manual
3
- subtitle : Version 2.15 .99
3
+ subtitle : Version 2.16 .99
4
4
author : Cppcheck team
5
5
lang : en
6
6
documentclass : report
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Cppcheck .cfg format
3
- subtitle : Version 2.15 .99
3
+ subtitle : Version 2.16 .99
4
4
author : Cppcheck team
5
5
lang : en
6
6
documentclass : report
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Writing addons
3
- subtitle : Version 2.15 .99
3
+ subtitle : Version 2.16 .99
4
4
author : Cppcheck team
5
5
lang : en
6
6
documentclass : report
Original file line number Diff line number Diff line change 1
- Release Notes for Cppcheck 2.16
1
+ Release Notes for Cppcheck 2.17
2
2
3
3
New checks:
4
4
-
10
10
-
11
11
12
12
Changed interface:
13
- - SARIF output. Use --output-format=sarif to activate this.
14
- - Add option --output-format=<format>. Allowed formats are sarif and xml.
15
13
-
16
14
17
15
Deprecations:
18
- - The previously deprecated support for Python 2.7 has been removed. please use Python 3 instead.
19
- - The maximum value for --max-ctu-depth is currently capped at 10. This limitation will be removed in a future release.
20
16
-
21
17
22
18
Other:
23
- - "missingInclude" is no longer implicitly enabled with "information" - you need to enable it explicitly now.
24
19
-
Original file line number Diff line number Diff line change 26
26
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
27
27
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
28
28
# changes)
29
- SERVER_VERSION = "1.3.62 "
29
+ SERVER_VERSION = "1.3.63 "
30
30
31
- OLD_VERSION = '2.15 .0'
31
+ OLD_VERSION = '2.16 .0'
32
32
33
33
HEAD_MARKER = 'head results:'
34
34
INFO_MARKER = 'info messages:'
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Include >
3
- <?define ProductName = " Cppcheck $(var.Platform) 2.16 dev" ?>
3
+ <?define ProductName = " Cppcheck $(var.Platform) 2.17 dev" ?>
4
4
<?define ProductNameShort = " Cppcheck" ?>
5
- <?define ProductVersion = " 2.15 .99" ?>
5
+ <?define ProductVersion = " 2.16 .99" ?>
6
6
7
7
<?define ProductManufacturer = " The Cppcheck team" ?>
8
8
<?define ProductDescription = " Cppcheck is a tool for static analysis of C/C++ code" ?>
You can’t perform that action at this time.
0 commit comments