Skip to content

Commit cebf34e

Browse files
committed
1.81: Set versions
1 parent 335c848 commit cebf34e

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

cli/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
*
2222
* @mainpage Cppcheck
23-
* @version 1.80.99
23+
* @version 1.81
2424
*
2525
* @section overview_sec Overview
2626
* Cppcheck is a simple tool for static analysis of C/C++ code.

cmake/versions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Version for libraries CPP
2-
SET(VERSION "1.80.99")
2+
SET(VERSION "1.81")
33
STRING(REGEX MATCHALL "[0-9]" VERSION_PARTS "${VERSION}")
44
LIST(GET VERSION_PARTS 0 VERSION_MAJOR)
55
LIST(GET VERSION_PARTS 1 VERSION_MINOR)

createrelease

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# ./cppcheck --xml-version=2 --errorlist > errlist.xml && xmllint --noout errlist.xml
1515
#
1616
# Update AUTHORS using output from:
17-
# git log --format='%aN' 1.77..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less
17+
# git log --format='%aN' 1.81..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less
1818
#
1919
# Update version numbers in:
2020
# sed -i "s/1.[0-9][0-9].99/1.80/" cli/main.cpp

lib/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define CPPCHECK_MAJOR 1
2-
#define CPPCHECK_MINOR 80
2+
#define CPPCHECK_MINOR 81
33
#define CPPCHECK_DEVMINOR 81
44

55
#define STRINGIFY(x) STRING(x)

man/manual.docbook

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
44
<book>
55
<bookinfo>
6-
<title>Cppcheck 1.81 dev</title>
6+
<title>Cppcheck 1.81</title>
77

88
<date>2017-08-12</date>
99
</bookinfo>

win_installer/productInfo.wxi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Include>
3-
<?define ProductName = "Cppcheck $(var.Platform) 1.81 dev" ?>
3+
<?define ProductName = "Cppcheck $(var.Platform) 1.81" ?>
44
<?define ProductNameShort = "Cppcheck" ?>
5-
<?define ProductVersion = "1.80.99" ?>
5+
<?define ProductVersion = "1.81" ?>
66

77
<?define ProductManufacturer = "The Cppcheck team" ?>
88
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>

0 commit comments

Comments
 (0)