Skip to content

Commit ac9db30

Browse files
committed
2.17.1: Set version
1 parent 521d5d8 commit ac9db30

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.13)
2-
project(Cppcheck VERSION 2.17.0 LANGUAGES CXX)
2+
project(Cppcheck VERSION 2.17.1 LANGUAGES CXX)
33

44
include(cmake/options.cmake)
55

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.17.0
23+
* @version 2.17.1
2424
*
2525
* @section overview_sec Overview
2626
* Cppcheck is a simple tool for static analysis of C/C++ code.

lib/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* -*- C++ -*-
22
* Cppcheck - A tool for static C/C++ code analysis
3-
* Copyright (C) 2007-2024 Cppcheck team.
3+
* Copyright (C) 2007-2025 Cppcheck team.
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@
2525
#define CPPCHECK_MAJOR_VERSION 2
2626
#define CPPCHECK_MINOR_VERSION 17
2727
#define CPPCHECK_DEVMINOR_VERSION 17
28-
#define CPPCHECK_BUGFIX_VERSION 0
28+
#define CPPCHECK_BUGFIX_VERSION 1
2929

3030
#define STRINGIFY(x) STRING(x)
3131
#define STRING(VER) #VER
@@ -36,6 +36,6 @@
3636
#define CPPCHECK_VERSION_STRING STRINGIFY(CPPCHECK_MAJOR_VERSION) "." STRINGIFY(CPPCHECK_DEVMINOR_VERSION) " dev"
3737
#define CPPCHECK_VERSION CPPCHECK_MAJOR_VERSION,CPPCHECK_MINOR_VERSION,99,0
3838
#endif
39-
#define LEGALCOPYRIGHT L"Copyright (C) 2007-2024 Cppcheck team."
39+
#define LEGALCOPYRIGHT L"Copyright (C) 2007-2025 Cppcheck team."
4040

4141
#endif

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