2.4: Set version
This commit is contained in:
parent
8e6168ee22
commit
cba0101df5
|
@ -20,7 +20,7 @@
|
|||
/**
|
||||
*
|
||||
* @mainpage Cppcheck
|
||||
* @version 2.3
|
||||
* @version 2.4
|
||||
*
|
||||
* @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.3")
|
||||
SET(VERSION "2.4")
|
||||
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 3
|
||||
#define CPPCHECK_DEVMINOR 3
|
||||
#define CPPCHECK_MINOR 4
|
||||
#define CPPCHECK_DEVMINOR 4
|
||||
|
||||
#define STRINGIFY(x) STRING(x)
|
||||
#define STRING(VER) #VER
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Cppcheck manual
|
||||
subtitle: Version 2.3
|
||||
subtitle: Version 2.4
|
||||
author: Cppcheck team
|
||||
lang: en
|
||||
documentclass: report
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Cppcheck .cfg format
|
||||
subtitle: Version 2.3
|
||||
subtitle: Version 2.4
|
||||
author: Cppcheck team
|
||||
lang: en
|
||||
documentclass: report
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Include>
|
||||
<?define ProductName = "Cppcheck $(var.Platform) 2.3" ?>
|
||||
<?define ProductName = "Cppcheck $(var.Platform) 2.4" ?>
|
||||
<?define ProductNameShort = "Cppcheck" ?>
|
||||
<?define ProductVersion = "2.3" ?>
|
||||
<?define ProductVersion = "2.4" ?>
|
||||
|
||||
<?define ProductManufacturer = "The Cppcheck team" ?>
|
||||
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>
|
||||
|
|
Loading…
Reference in New Issue