From 290a0de6e5191a23a1af9cbd41e0b96ebb65de03 Mon Sep 17 00:00:00 2001 From: XMRig Date: Tue, 23 Dec 2025 19:37:24 +0700 Subject: [PATCH] v6.25.0-dev --- .gitignore | 1 + CHANGELOG.md | 14 ++++++++++++++ src/version.h | 19 ++++--------------- 3 files changed, 19 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index a537f9f1c..9687ec69d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ scripts/deps /.idea /src/backend/opencl/cl/cn/cryptonight_gen.cl .vscode +/.qtcreator diff --git a/CHANGELOG.md b/CHANGELOG.md index f2e477dd2..dc25c1b97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v6.25.0 +- [#3680](https://github.com/xmrig/xmrig/pull/3680) Added `armv8l` to the list of 32-bit ARM targets. +- [#3708](https://github.com/xmrig/xmrig/pull/3708) Minor Aarch64 JIT changes (better instruction selection, don't emit instructions that add 0, etc). +- [#3718](https://github.com/xmrig/xmrig/pull/3718) Solo mining: added support for FCMP++ hardfork. +- [#3722](https://github.com/xmrig/xmrig/pull/3722) Added Zen4 (Hawk Point) CPUs detection. +- [#3725](https://github.com/xmrig/xmrig/pull/3725) Added **RISC-V** support with JIT compiler. +- [#3731](https://github.com/xmrig/xmrig/pull/3731) Added initial Haiku OS support. +- [#3733](https://github.com/xmrig/xmrig/pull/3733) Added detection for MSVC/2026. +- [#3736](https://github.com/xmrig/xmrig/pull/3736) RISC-V: added vectorized dataset init. +- [#3740](https://github.com/xmrig/xmrig/pull/3740) RISC-V: added vectorized soft AES. +- [#3743](https://github.com/xmrig/xmrig/pull/3743) Linux: added support for transparent huge pages. +- Improved LibreSSL support. +- Improved compatibility for automatically enabling huge pages on Linux systems without NUMA support. + # v6.24.0 - [#3671](https://github.com/xmrig/xmrig/pull/3671) Fixed detection of L2 cache size for some complex NUMA topologies. - [#3674](https://github.com/xmrig/xmrig/pull/3674) Fixed ARMv7 build. diff --git a/src/version.h b/src/version.h index e616cf1ee..805fe727c 100644 --- a/src/version.h +++ b/src/version.h @@ -2,18 +2,7 @@ * Copyright (c) 2018-2025 SChernykh * Copyright (c) 2016-2025 XMRig , * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * SPDX-License-Identifier: GPL-3.0-or-later */ #ifndef XMRIG_VERSION_H @@ -22,15 +11,15 @@ #define APP_ID "xmrig" #define APP_NAME "XMRig" #define APP_DESC "XMRig miner" -#define APP_VERSION "6.24.1-dev" +#define APP_VERSION "6.25.0-dev" #define APP_DOMAIN "xmrig.com" #define APP_SITE "www.xmrig.com" #define APP_COPYRIGHT "Copyright (C) 2016-2025 xmrig.com" #define APP_KIND "miner" #define APP_VER_MAJOR 6 -#define APP_VER_MINOR 24 -#define APP_VER_PATCH 1 +#define APP_VER_MINOR 25 +#define APP_VER_PATCH 0 #ifdef _MSC_VER # if (_MSC_VER >= 1950)