1.81: Set versions
This commit is contained in:
parent
335c84833b
commit
cebf34e718
|
@ -20,7 +20,7 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @mainpage Cppcheck
|
* @mainpage Cppcheck
|
||||||
* @version 1.80.99
|
* @version 1.81
|
||||||
*
|
*
|
||||||
* @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 "1.80.99")
|
SET(VERSION "1.81")
|
||||||
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)
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
# ./cppcheck --xml-version=2 --errorlist > errlist.xml && xmllint --noout errlist.xml
|
# ./cppcheck --xml-version=2 --errorlist > errlist.xml && xmllint --noout errlist.xml
|
||||||
#
|
#
|
||||||
# Update AUTHORS using output from:
|
# Update AUTHORS using output from:
|
||||||
# git log --format='%aN' 1.77..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less
|
# git log --format='%aN' 1.81..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less
|
||||||
#
|
#
|
||||||
# Update version numbers in:
|
# Update version numbers in:
|
||||||
# sed -i "s/1.[0-9][0-9].99/1.80/" cli/main.cpp
|
# sed -i "s/1.[0-9][0-9].99/1.80/" cli/main.cpp
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#define CPPCHECK_MAJOR 1
|
#define CPPCHECK_MAJOR 1
|
||||||
#define CPPCHECK_MINOR 80
|
#define CPPCHECK_MINOR 81
|
||||||
#define CPPCHECK_DEVMINOR 81
|
#define CPPCHECK_DEVMINOR 81
|
||||||
|
|
||||||
#define STRINGIFY(x) STRING(x)
|
#define STRINGIFY(x) STRING(x)
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
|
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
|
||||||
<book>
|
<book>
|
||||||
<bookinfo>
|
<bookinfo>
|
||||||
<title>Cppcheck 1.81 dev</title>
|
<title>Cppcheck 1.81</title>
|
||||||
|
|
||||||
<date>2017-08-12</date>
|
<date>2017-08-12</date>
|
||||||
</bookinfo>
|
</bookinfo>
|
||||||
|
|
|
@ -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) 1.81 dev" ?>
|
<?define ProductName = "Cppcheck $(var.Platform) 1.81" ?>
|
||||||
<?define ProductNameShort = "Cppcheck" ?>
|
<?define ProductNameShort = "Cppcheck" ?>
|
||||||
<?define ProductVersion = "1.80.99" ?>
|
<?define ProductVersion = "1.81" ?>
|
||||||
|
|
||||||
<?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