From b8f9a326aaec8ff7789d8f9cbe2af8f994149e8a Mon Sep 17 00:00:00 2001 From: XMRig Date: Sun, 7 Mar 2021 01:44:38 +0700 Subject: [PATCH] 6.10.0-dev --- CHANGELOG.md | 10 ++++++++++ src/version.h | 6 +++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a137cf95..989d193a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# v6.10.0 +- [#2122](https://github.com/xmrig/xmrig/pull/2122) Fixed pause logic when both pause on battery and user activity are enabled. +- [#2123](https://github.com/xmrig/xmrig/issues/2123) Fixed compatibility with gcc 4.8. +- [#2147](https://github.com/xmrig/xmrig/pull/2147) Fixed many `new job` messages when solo mining. +- [#2150](https://github.com/xmrig/xmrig/pull/2150) Updated `sse2neon.h` to the latest master, fixes build on ARMv7. +- [#2157](https://github.com/xmrig/xmrig/pull/2157) Fixed crash in `cn-heavy` on Zen3 with manual thread count. +- Fixed possible out of order write to log file. +- [http-parser](https://github.com/nodejs/http-parser) replaced to [llhttp](https://github.com/nodejs/llhttp). +- For official builds: libuv, hwloc and OpenSSL updated to latest versions. + # v6.9.0 - [#2104](https://github.com/xmrig/xmrig/pull/2104) Added [pause-on-active](https://xmrig.com/docs/miner/config/misc#pause-on-active) config option and `--pause-on-active=N` command line option. - [#2112](https://github.com/xmrig/xmrig/pull/2112) Added support for [Tari merge mining](https://github.com/tari-project/tari/blob/development/README.md#tari-merge-mining). diff --git a/src/version.h b/src/version.h index 2eb246d10..703079c24 100644 --- a/src/version.h +++ b/src/version.h @@ -28,15 +28,15 @@ #define APP_ID "xmrig" #define APP_NAME "XMRig" #define APP_DESC "XMRig miner" -#define APP_VERSION "6.9.1-dev" +#define APP_VERSION "6.10.0-dev" #define APP_DOMAIN "xmrig.com" #define APP_SITE "www.xmrig.com" #define APP_COPYRIGHT "Copyright (C) 2016-2021 xmrig.com" #define APP_KIND "miner" #define APP_VER_MAJOR 6 -#define APP_VER_MINOR 9 -#define APP_VER_PATCH 1 +#define APP_VER_MINOR 10 +#define APP_VER_PATCH 0 #ifdef _MSC_VER # if (_MSC_VER >= 1920)