Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.13)
project(Cppcheck VERSION 2.16.99 LANGUAGES CXX)
project(Cppcheck VERSION 2.17.99 LANGUAGES CXX)

include(cmake/options.cmake)

Expand Down
2 changes: 1 addition & 1 deletion cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
*
* @mainpage Cppcheck
* @version 2.16.99
* @version 2.17.99
*
* @section overview_sec Overview
* Cppcheck is a simple tool for static analysis of C/C++ code.
Expand Down
4 changes: 2 additions & 2 deletions lib/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
#define versionH

#define CPPCHECK_MAJOR_VERSION 2
#define CPPCHECK_MINOR_VERSION 16
#define CPPCHECK_DEVMINOR_VERSION 17
#define CPPCHECK_MINOR_VERSION 17
#define CPPCHECK_DEVMINOR_VERSION 18
#define CPPCHECK_BUGFIX_VERSION 99

#define STRINGIFY(x) STRING(x)
Expand Down
2 changes: 1 addition & 1 deletion man/manual.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Cppcheck manual
subtitle: Version 2.16.99
subtitle: Version 2.17.99
author: Cppcheck team
lang: en
documentclass: report
Expand Down
2 changes: 1 addition & 1 deletion man/reference-cfg-format.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Cppcheck .cfg format
subtitle: Version 2.16.99
subtitle: Version 2.17.99
author: Cppcheck team
lang: en
documentclass: report
Expand Down
2 changes: 1 addition & 1 deletion man/writing-addons.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Writing addons
subtitle: Version 2.16.99
subtitle: Version 2.17.99
author: Cppcheck team
lang: en
documentclass: report
Expand Down
4 changes: 2 additions & 2 deletions tools/donate-cpu-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
# changes)
SERVER_VERSION = "1.3.63"
SERVER_VERSION = "1.3.64"

# TODO: fetch from GitHub tags
OLD_VERSION = '2.16.0'
OLD_VERSION = '2.17.0'

HEAD_MARKER = 'head results:'
INFO_MARKER = 'info messages:'
Expand Down
4 changes: 2 additions & 2 deletions win_installer/productInfo.wxi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<?define ProductName = "Cppcheck $(var.Platform) 2.17 dev" ?>
<?define ProductName = "Cppcheck $(var.Platform) 2.18 dev" ?>
<?define ProductNameShort = "Cppcheck" ?>
<?define ProductVersion = "2.16.99" ?>
<?define ProductVersion = "2.17.99" ?>

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