bumped version to 2.11 (#4751)
This commit is contained in:
parent
a64dfbc519
commit
1a460d7bc0
|
@ -20,7 +20,7 @@
|
|||
/**
|
||||
*
|
||||
* @mainpage Cppcheck
|
||||
* @version 2.10.99
|
||||
* @version 2.11.99
|
||||
*
|
||||
* @section overview_sec Overview
|
||||
* Cppcheck is a simple tool for static analysis of C/C++ code.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Version for libraries CPP
|
||||
SET(VERSION "2.10.99")
|
||||
SET(VERSION "2.11.99")
|
||||
STRING(REGEX MATCHALL "[0-9]+" VERSION_PARTS "${VERSION}")
|
||||
LIST(GET VERSION_PARTS 0 VERSION_MAJOR)
|
||||
LIST(GET VERSION_PARTS 1 VERSION_MINOR)
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
// After a release the DEVMINOR is incremented. MAJOR=x MINOR=y, DEVMINOR=y+1
|
||||
|
||||
#define CPPCHECK_MAJOR 2
|
||||
#define CPPCHECK_MINOR 9
|
||||
#define CPPCHECK_DEVMINOR 10
|
||||
#define CPPCHECK_MINOR 10
|
||||
#define CPPCHECK_DEVMINOR 11
|
||||
|
||||
#define STRINGIFY(x) STRING(x)
|
||||
#define STRING(VER) #VER
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Cppcheck manual
|
||||
subtitle: Version 2.10
|
||||
subtitle: Version 2.11
|
||||
author: Cppcheck team
|
||||
lang: en
|
||||
documentclass: report
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Cppcheck .cfg format
|
||||
subtitle: Version 2.10
|
||||
subtitle: Version 2.11
|
||||
author: Cppcheck team
|
||||
lang: en
|
||||
documentclass: report
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Writing addons
|
||||
subtitle: Version 2.10
|
||||
subtitle: Version 2.11
|
||||
author: Cppcheck team
|
||||
lang: en
|
||||
documentclass: report
|
||||
|
|
|
@ -1,7 +1,2 @@
|
|||
release notes for cppcheck-2.10
|
||||
release notes for cppcheck-2.11
|
||||
|
||||
- the deprecated Makefile option SRCDIR is no longer accepted
|
||||
- if the file provided via "--file-list" cannot be opened it will now error out
|
||||
- add command-line option "--disable=<id>" to individually disable checks
|
||||
- added CMake option BUILD_CORE_DLL to build lib as cppcheck-core.dll with Visual Studio
|
||||
- Windows binaries currently default to the "win32A" and "win64" platform respectively. Starting with Cppcheck 2.13 they will default to 'native' instead. Please specify '--platform=win32A' or '--platform=win64' explicitly if you rely on this.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Include>
|
||||
<?define ProductName = "Cppcheck $(var.Platform) 2.10 dev" ?>
|
||||
<?define ProductName = "Cppcheck $(var.Platform) 2.11 dev" ?>
|
||||
<?define ProductNameShort = "Cppcheck" ?>
|
||||
<?define ProductVersion = "2.10.99" ?>
|
||||
<?define ProductVersion = "2.11.99" ?>
|
||||
|
||||
<?define ProductManufacturer = "The Cppcheck team" ?>
|
||||
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>
|
||||
|
|
Loading…
Reference in New Issue