Skip to content

Commit 026bbac

Browse files
committed
2.1: Set version
1 parent 37245a8 commit 026bbac

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
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 2.0
23+
* @version 2.1
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 "2.0.99")
2+
SET(VERSION "2.1")
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
# git log --format='%aN' 1.81..HEAD | sort -u > AUTHORS2 && diff -y AUTHORS AUTHORS2 | less
2121
#
2222
# Update version numbers in:
23-
# sed -i "s/1.[0-9][0-9].99/1.89/" cli/main.cpp
24-
# sed -i "s/1.[0-9][0-9].99/1.89/" cmake/versions.cmake
25-
# sed -i "s/MINOR [0-9][0-9]/MINOR 89/" lib/version.h
26-
# sed -i "s/1.[0-9][0-9] dev/1.89/" win_installer/productInfo.wxi
27-
# sed -i "s/1.[0-9][0-9].99/1.89/" win_installer/productInfo.wxi
28-
# sed -i "s/Version 1.[0-9][0-9]/Version 1.89/" */*.md
23+
# sed -i "s/[12].[0-9][0-9]*.99/2.1/" cli/main.cpp
24+
# sed -i "s/[12].[0-9][0-9]*/2.1/" cmake/versions.cmake
25+
# sed -i "s/MINOR [0-9][0-9]*/MINOR 1/" lib/version.h
26+
# sed -i "s/[12].[0-9][0-9]* dev/2.1/" win_installer/productInfo.wxi
27+
# sed -i "s/[12].[0-9][0-9]*/2.1/" win_installer/productInfo.wxi
28+
# sed -i "s/Version [12].[0-9]+/Version 2.1/" */*.md
2929
# Verify:
3030
# grep '\.99' */*.[ch]* && grep '[0-9][0-9] dev' */*.[ch]*
3131
# git commit -a -m "1.43: Set versions"

lib/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// After a release the DEVMINOR is incremented. MAJOR=x MINOR=y, DEVMINOR=y+1
33

44
#define CPPCHECK_MAJOR 2
5-
#define CPPCHECK_MINOR 0
5+
#define CPPCHECK_MINOR 1
66
#define CPPCHECK_DEVMINOR 1
77

88
#define STRINGIFY(x) STRING(x)

man/manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Cppcheck manual
3-
subtitle: Version 2.0
3+
subtitle: Version 2.1
44
author: Cppcheck team
55
lang: en
66
documentclass: report

man/reference-cfg-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Cppcheck .cfg format
3-
subtitle: Version 2.0
3+
subtitle: Version 2.1
44
author: Cppcheck team
55
lang: en
66
documentclass: report

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) 2.0" ?>
3+
<?define ProductName = "Cppcheck $(var.Platform) 2.1" ?>
44
<?define ProductNameShort = "Cppcheck" ?>
5-
<?define ProductVersion = "2.0" ?>
5+
<?define ProductVersion = "2.1" ?>
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)