2.2: Update versions
This commit is contained in:
parent
4843cc22e0
commit
c373be0b16
|
@ -20,7 +20,7 @@
|
|||
/**
|
||||
*
|
||||
* @mainpage Cppcheck
|
||||
* @version 2.1.99
|
||||
* @version 2.2
|
||||
*
|
||||
* @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.1.99")
|
||||
SET(VERSION "2.2")
|
||||
STRING(REGEX MATCHALL "[0-9]" VERSION_PARTS "${VERSION}")
|
||||
LIST(GET VERSION_PARTS 0 VERSION_MAJOR)
|
||||
LIST(GET VERSION_PARTS 1 VERSION_MINOR)
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
# sed -i "s/MINOR [0-9][0-9]*/MINOR 1/" lib/version.h
|
||||
# sed -i "s/[12].[0-9][0-9]* dev/2.1/" win_installer/productInfo.wxi
|
||||
# sed -i "s/[12].[0-9][0-9]*/2.1/" win_installer/productInfo.wxi
|
||||
# sed -i "s/Version [12].[0-9]+/Version 2.1/" */*.md
|
||||
# sed -i "s/subtitle: Version 2[.0-9]*/subtitle: Version 2.2/" man/*.md
|
||||
# Verify:
|
||||
# grep '\.99' */*.[ch]* && grep '[0-9][0-9] dev' */*.[ch]*
|
||||
# git commit -a -m "1.43: Set versions"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
// After a release the DEVMINOR is incremented. MAJOR=x MINOR=y, DEVMINOR=y+1
|
||||
|
||||
#define CPPCHECK_MAJOR 2
|
||||
#define CPPCHECK_MINOR 1
|
||||
#define CPPCHECK_MINOR 2
|
||||
#define CPPCHECK_DEVMINOR 2
|
||||
|
||||
#define STRINGIFY(x) STRING(x)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Cppcheck manual
|
||||
subtitle: Version 2.1.99
|
||||
subtitle: Version 2.2
|
||||
author: Cppcheck team
|
||||
lang: en
|
||||
documentclass: report
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Cppcheck .cfg format
|
||||
subtitle: Version 2.1.99
|
||||
subtitle: Version 2.2
|
||||
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.2 dev" ?>
|
||||
<?define ProductName = "Cppcheck $(var.Platform) 2.2" ?>
|
||||
<?define ProductNameShort = "Cppcheck" ?>
|
||||
<?define ProductVersion = "2.1.99" ?>
|
||||
<?define ProductVersion = "2.2" ?>
|
||||
|
||||
<?define ProductManufacturer = "The Cppcheck team" ?>
|
||||
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>
|
||||
|
|
Loading…
Reference in New Issue