diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ac774d2..e8daa17f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 1.7.0 +- First official Release of XMRigCC-amd #33 #3 +- Full integration of xmrigCC-amd into XMRigCCServer/Dashboard with GPUInfo / remote logging +- Config property to enable/disable config upload on startup (--cc-upload-config-on-startup) #80 +- Refactoring of remote logging feature: #143 + - Only deltas will be send to the XMRigCCServer + - Fetching miner log on dashboard upon need +- Fix correct hugepages status on Dashboard +- Fix cpu affinity for single thread usage # 1.6.5 - Hashrate improve -> add autodetection mode for cpu-affinity - Hashrate improve, more stable hashrates -> refactor memory allocation diff --git a/Dockerfile b/Dockerfile index ca0f4d05..59ceab4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:latest RUN apt-get update && \ - apt install software-properties-common git build-essential libbz2-dev cmake libuv1-dev libssl-dev wget gcc g++ -y && \ + apt install git build-essential libbz2-dev cmake libuv1-dev libssl-dev wget gcc g++ -y && \ apt clean && \ rm -rf /var/lib/apt/lists/* diff --git a/appveyor.yml b/appveyor.yml index 40ac70f4..80ff01d3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ # version format -version: 1.6.{build} +version: 1.7.{build} # build only tags skip_non_tags: true diff --git a/src/version.h b/src/version.h index 3d91f8c3..df1b4407 100644 --- a/src/version.h +++ b/src/version.h @@ -36,14 +36,14 @@ #define APP_DESC "XMRigCC CPU miner" #define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id" #endif -#define APP_VERSION "1.6.6_beta1 (based on XMRig)" +#define APP_VERSION "1.7.0_beta1 (based on XMRig)" #define APP_DOMAIN "" #define APP_SITE "https://github.com/Bendr0id/xmrigCC" #define APP_KIND "cpu" #define APP_VER_MAJOR 1 -#define APP_VER_MINOR 6 -#define APP_VER_BUILD 6 +#define APP_VER_MINOR 7 +#define APP_VER_BUILD 0 #define APP_VER_REV 0 #ifndef NDEBUG