2.3: Update version
This commit is contained in:
parent
c9b408c185
commit
2a1e230d2e
|
@ -20,7 +20,7 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @mainpage Cppcheck
|
* @mainpage Cppcheck
|
||||||
* @version 2.2.99
|
* @version 2.3
|
||||||
*
|
*
|
||||||
* @section overview_sec Overview
|
* @section overview_sec Overview
|
||||||
* Cppcheck is a simple tool for static analysis of C/C++ code.
|
* Cppcheck is a simple tool for static analysis of C/C++ code.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Version for libraries CPP
|
# Version for libraries CPP
|
||||||
SET(VERSION "2.2.99")
|
SET(VERSION "2.3")
|
||||||
STRING(REGEX MATCHALL "[0-9]" VERSION_PARTS "${VERSION}")
|
STRING(REGEX MATCHALL "[0-9]" VERSION_PARTS "${VERSION}")
|
||||||
LIST(GET VERSION_PARTS 0 VERSION_MAJOR)
|
LIST(GET VERSION_PARTS 0 VERSION_MAJOR)
|
||||||
LIST(GET VERSION_PARTS 1 VERSION_MINOR)
|
LIST(GET VERSION_PARTS 1 VERSION_MINOR)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// After a release the DEVMINOR is incremented. MAJOR=x MINOR=y, DEVMINOR=y+1
|
// After a release the DEVMINOR is incremented. MAJOR=x MINOR=y, DEVMINOR=y+1
|
||||||
|
|
||||||
#define CPPCHECK_MAJOR 2
|
#define CPPCHECK_MAJOR 2
|
||||||
#define CPPCHECK_MINOR 2
|
#define CPPCHECK_MINOR 3
|
||||||
#define CPPCHECK_DEVMINOR 3
|
#define CPPCHECK_DEVMINOR 3
|
||||||
|
|
||||||
#define STRINGIFY(x) STRING(x)
|
#define STRINGIFY(x) STRING(x)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Cppcheck manual
|
title: Cppcheck manual
|
||||||
subtitle: Version 2.2.99
|
subtitle: Version 2.3
|
||||||
author: Cppcheck team
|
author: Cppcheck team
|
||||||
lang: en
|
lang: en
|
||||||
documentclass: report
|
documentclass: report
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Cppcheck .cfg format
|
title: Cppcheck .cfg format
|
||||||
subtitle: Version 2.2.99
|
subtitle: Version 2.3
|
||||||
author: Cppcheck team
|
author: Cppcheck team
|
||||||
lang: en
|
lang: en
|
||||||
documentclass: report
|
documentclass: report
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Include>
|
<Include>
|
||||||
<?define ProductName = "Cppcheck $(var.Platform) 2.3 dev" ?>
|
<?define ProductName = "Cppcheck $(var.Platform) 2.3" ?>
|
||||||
<?define ProductNameShort = "Cppcheck" ?>
|
<?define ProductNameShort = "Cppcheck" ?>
|
||||||
<?define ProductVersion = "2.2.99" ?>
|
<?define ProductVersion = "2.3" ?>
|
||||||
|
|
||||||
<?define ProductManufacturer = "The Cppcheck team" ?>
|
<?define ProductManufacturer = "The Cppcheck team" ?>
|
||||||
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>
|
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>
|
||||||
|
|
Loading…
Reference in New Issue