build: update version to 1.4.2

Update client version from 1.4.1 to 1.4.2 across configuration files, source code, and documentation
This commit is contained in:
2025-11-13 15:58:01 +01:00
parent 553424d19d
commit 9f156ae1ad
8 changed files with 19 additions and 19 deletions

View File

@@ -21,7 +21,7 @@
#define CLIENT_VERSION_MINOR 4
/* Build revision */
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_REVISION 2
/* Copyright holder(s) before %s replacement */
#define COPYRIGHT_HOLDERS "The %s developers"

View File

@@ -1,7 +1,7 @@
AC_PREREQ([2.69])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 4)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_REVISION, 2)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_RC, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)

View File

@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH PALLADIUM-CLI "1" "April 2024" "palladium-cli v1.4.1" "User Commands"
.TH PALLADIUM-CLI "1" "April 2024" "palladium-cli v1.4.2" "User Commands"
.SH NAME
palladium-cli \- manual page for palladium-cli v1.4.1
palladium-cli \- manual page for palladium-cli v1.4.2
.SH SYNOPSIS
.B palladium-cli
[\fI\,options\/\fR] \fI\,<command> \/\fR[\fI\,params\/\fR] \fI\,Send command to Palladium Core\/\fR
@@ -15,7 +15,7 @@ palladium-cli \- manual page for palladium-cli v1.4.1
.B palladium-cli
[\fI\,options\/\fR] \fI\,help <command> Get help for a command\/\fR
.SH DESCRIPTION
Palladium Core RPC client version v1.4.1
Palladium Core RPC client version v1.4.2
.SH OPTIONS
.HP
\-?

View File

@@ -1,12 +1,12 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH PALLADIUM-QT "1" "April 2024" "palladium-qt v1.4.1" "User Commands"
.TH PALLADIUM-QT "1" "April 2024" "palladium-qt v1.4.2" "User Commands"
.SH NAME
palladium-qt \- manual page for palladium-qt v1.4.1
palladium-qt \- manual page for palladium-qt v1.4.2
.SH SYNOPSIS
.B palladium-qt
[\fI\,command-line options\/\fR]
.SH DESCRIPTION
Palladium Core version v1.4.1
Palladium Core version v1.4.2
.SH OPTIONS
.HP
\-?

View File

@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH PALLADIUM-TX "1" "April 2024" "palladium-tx v1.4.1" "User Commands"
.TH PALLADIUM-TX "1" "April 2024" "palladium-tx v1.4.2" "User Commands"
.SH NAME
palladium-tx \- manual page for palladium-tx v1.4.1
palladium-tx \- manual page for palladium-tx v1.4.2
.SH SYNOPSIS
.B palladium-tx
[\fI\,options\/\fR] \fI\,<hex-tx> \/\fR[\fI\,commands\/\fR] \fI\,Update hex-encoded palladium transaction\/\fR
@@ -9,7 +9,7 @@ palladium-tx \- manual page for palladium-tx v1.4.1
.B palladium-tx
[\fI\,options\/\fR] \fI\,-create \/\fR[\fI\,commands\/\fR] \fI\,Create hex-encoded palladium transaction\/\fR
.SH DESCRIPTION
Palladium Core palladium\-tx utility version v1.4.1
Palladium Core palladium\-tx utility version v1.4.2
.SH OPTIONS
.HP
\-?

View File

@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH PALLADIUM-WALLET "1" "April 2024" "palladium-wallet v1.4.1" "User Commands"
.TH PALLADIUM-WALLET "1" "April 2024" "palladium-wallet v1.4.2" "User Commands"
.SH NAME
palladium-wallet \- manual page for palladium-wallet v1.4.1
palladium-wallet \- manual page for palladium-wallet v1.4.2
.SH DESCRIPTION
Palladium Core palladium\-wallet version v1.4.1
Palladium Core palladium\-wallet version v1.4.2
.PP
palladium\-wallet is an offline tool for creating and interacting with Palladium Core wallet files.
By default palladium\-wallet will act on wallets in the default mainnet wallet directory in the datadir.

View File

@@ -1,12 +1,12 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH PALLADIUMD "1" "April 2024" "palladiumd v1.4.1" "User Commands"
.TH PALLADIUMD "1" "April 2024" "palladiumd v1.4.2" "User Commands"
.SH NAME
palladiumd \- manual page for palladiumd v1.4.1
palladiumd \- manual page for palladiumd v1.4.2
.SH SYNOPSIS
.B palladiumd
[\fI\,options\/\fR] \fI\,Start Palladium Core\/\fR
.SH DESCRIPTION
Palladium Core version v1.4.1
Palladium Core version v1.4.2
.SH OPTIONS
.HP
\-?

View File

@@ -81,8 +81,8 @@ std::string FormatFullVersion()
{
// Display a simplified semantic version: omit trailing ".0" and git suffix
// by reusing FormatVersion on the aggregated CLIENT_VERSION.
// This yields e.g. "v1.4.1" when CLIENT_VERSION_BUILD == 0,
// or "v1.4.1.1" if a non-zero build number is used.
// This yields e.g. "v1.4.2" when CLIENT_VERSION_BUILD == 0,
// or "v1.4.2.1" if a non-zero build number is used.
return std::string("v") + FormatVersion(CLIENT_VERSION);
}