diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fb2fc4a..d70d0fc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# v5.1.0 +- [#1351](https://github.com/xmrig/xmrig/pull/1351) RandomX optimizations and fixes. + - Improved RandomX performance (up to +6-7% on Intel CPUs, +2-3% on Ryzen CPUs) + - Added workaround for Intel JCC erratum bug see https://www.phoronix.com/scan.php?page=article&item=intel-jcc-microcode&num=1 for details. + - Note! Always disable "Hardware prefetcher" and "Adjacent cacheline prefetch" in BIOS for Intel CPUs to get the optimal RandomX performance. +- [#1307](https://github.com/xmrig/xmrig/issues/1307) Fixed mining resume after donation round for pools with `self-select` feature. +- [#1318](https://github.com/xmrig/xmrig/issues/1318#issuecomment-559676080) Added option `"mode"` (or `--randomx-mode`) for RandomX. + - Added memory information on miner startup. + - Added `resources` field to summary API with memory information and load average. + # v5.0.1 - [#1234](https://github.com/xmrig/xmrig/issues/1234) Fixed compatibility with some AMD GPUs. - [#1284](https://github.com/xmrig/xmrig/issues/1284) Fixed build without RandomX. diff --git a/src/version.h b/src/version.h index 5d4e2564..1cbae1b0 100644 --- a/src/version.h +++ b/src/version.h @@ -28,7 +28,7 @@ #define APP_ID "xmrig" #define APP_NAME "XMRig" #define APP_DESC "XMRig miner" -#define APP_VERSION "5.1.0-dev" +#define APP_VERSION "5.1.0" #define APP_DOMAIN "xmrig.com" #define APP_SITE "www.xmrig.com" #define APP_COPYRIGHT "Copyright (C) 2016-2019 xmrig.com"