Skip to content

Commit bfdd519

Browse files
authored
bumped version to 2.16.99/2.17 (#6958)
1 parent 31b8e7e commit bfdd519

9 files changed

+12
-17
lines changed

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)
22
if(MSVC)
33
cmake_minimum_required(VERSION 3.13)
44
endif()
5-
project(Cppcheck VERSION 2.15.99 LANGUAGES CXX)
5+
project(Cppcheck VERSION 2.16.99 LANGUAGES CXX)
66

77
include(cmake/cxx11.cmake)
88
use_cxx11()

Diff for: cli/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
*
2222
* @mainpage Cppcheck
23-
* @version 2.15.99
23+
* @version 2.16.99
2424
*
2525
* @section overview_sec Overview
2626
* Cppcheck is a simple tool for static analysis of C/C++ code.

Diff for: lib/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
#define versionH
2424

2525
#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
2828
#define CPPCHECK_BUGFIX_VERSION 99
2929

3030
#define STRINGIFY(x) STRING(x)

Diff for: man/manual.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Cppcheck manual
3-
subtitle: Version 2.15.99
3+
subtitle: Version 2.16.99
44
author: Cppcheck team
55
lang: en
66
documentclass: report

Diff for: man/reference-cfg-format.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Cppcheck .cfg format
3-
subtitle: Version 2.15.99
3+
subtitle: Version 2.16.99
44
author: Cppcheck team
55
lang: en
66
documentclass: report

Diff for: man/writing-addons.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Writing addons
3-
subtitle: Version 2.15.99
3+
subtitle: Version 2.16.99
44
author: Cppcheck team
55
lang: en
66
documentclass: report

Diff for: releasenotes.txt

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Release Notes for Cppcheck 2.16
1+
Release Notes for Cppcheck 2.17
22

33
New checks:
44
-
@@ -10,15 +10,10 @@ GUI:
1010
-
1111

1212
Changed interface:
13-
- SARIF output. Use --output-format=sarif to activate this.
14-
- Add option --output-format=<format>. Allowed formats are sarif and xml.
1513
-
1614

1715
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.
2016
-
2117

2218
Other:
23-
- "missingInclude" is no longer implicitly enabled with "information" - you need to enable it explicitly now.
2419
-

Diff for: tools/donate-cpu-server.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
2727
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
2828
# changes)
29-
SERVER_VERSION = "1.3.62"
29+
SERVER_VERSION = "1.3.63"
3030

31-
OLD_VERSION = '2.15.0'
31+
OLD_VERSION = '2.16.0'
3232

3333
HEAD_MARKER = 'head results:'
3434
INFO_MARKER = 'info messages:'

Diff for: win_installer/productInfo.wxi

+2-2
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) 2.16 dev" ?>
3+
<?define ProductName = "Cppcheck $(var.Platform) 2.17 dev" ?>
44
<?define ProductNameShort = "Cppcheck" ?>
5-
<?define ProductVersion = "2.15.99" ?>
5+
<?define ProductVersion = "2.16.99" ?>
66

77
<?define ProductManufacturer = "The Cppcheck team" ?>
88
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>

0 commit comments

Comments
 (0)