Skip to content

Commit

Permalink
2.12.1: Set versions
Browse files Browse the repository at this point in the history
  • Loading branch information
danmar committed Sep 19, 2023
1 parent df0d6e2 commit 65da793
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
*
* @mainpage Cppcheck
* @version 2.12
* @version 2.12.1
*
* @section overview_sec Overview
* Cppcheck is a simple tool for static analysis of C/C++ code.
Expand Down
2 changes: 1 addition & 1 deletion cmake/versions.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Version for libraries CPP
# Version string must have 3 "parts". https://sourceforge.net/p/cppcheck/discussion/development/thread/e57efb2b62/
SET(VERSION "2.12.0")
SET(VERSION "2.12.1")
STRING(REGEX MATCHALL "[0-9]+" VERSION_PARTS "${VERSION}")
LIST(GET VERSION_PARTS 0 VERSION_MAJOR)
LIST(GET VERSION_PARTS 1 VERSION_MINOR)
Expand Down
2 changes: 1 addition & 1 deletion lib/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define CPPCHECK_MAJOR_VERSION 2
#define CPPCHECK_MINOR_VERSION 12
#define CPPCHECK_DEVMINOR_VERSION 12
#define CPPCHECK_FIX_VERSION 0
#define CPPCHECK_FIX_VERSION 1

#define STRINGIFY(x) STRING(x)
#define STRING(VER) #VER
Expand Down
4 changes: 2 additions & 2 deletions win_installer/productInfo.wxi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<?define ProductName = "Cppcheck $(var.Platform) 2.12" ?>
<?define ProductName = "Cppcheck $(var.Platform) 2.12.1" ?>
<?define ProductNameShort = "Cppcheck" ?>
<?define ProductVersion = "2.12.0" ?>
<?define ProductVersion = "2.12.1" ?>

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

3 comments on commit 65da793

@chenrui333
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

heads up, this commit did not make the release

relates to Homebrew/homebrew-core#144055

@danmar
Copy link
Owner Author

@danmar danmar commented on 65da793 Sep 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@chenrui333 : Thanks! I have added a release

@chenrui333
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @danmar, appreciate the help!! 💯

Please sign in to comment.